Java OOP-1

Class Object
Blueprint / Template(Plan)Real world entry
can’t visualcan visual
Defines properties(variables) and behaviour(methods)Uses those properties and methods
No memory allocation until object is createdOccupies memory when created
keyword-classkeyword-new
Example-class Car { … }Example-Car myCar = new Car()
Categories: ,

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Posts :-

  • PHP-2

    PHP Variables Rules for PHP variables: PHP supports the following…

  • PHP-1

    What is PHP? PHP (Hypertext Preprocessor) is a server-side scripting…

  • Java OOP-1

    Class Object Blueprint / Template(Plan) Real world entry can’t visual…