Posts

Showing posts with the label Java Language (English)

OOP Concepts - Part 02

Image
   - JAVA  Language -   Object Creation In Java, an object can be generated only if there is a class. Only a class can be converted into an object.                                           Human h1 = new Human();              …  h2 …               …  h3 …       Type - 01      Type - 02 ---------------------------------------------------------------------------------------------------------------------------   Primitive Data Types    ðŸ”…  Types/formats used to hold data.  Integer  Float  Binary (1/0)                                    1  byte - Integer                       ...

OOP Concepts - Part 01

Image
 - JAVA  Language -         Class  Hierarchy     Object     Class    Method    Variable     Standards Class :   The first letter is uppercase             example :-  Capital Variable : The first letter is lowercase            example :-  capital Method :  The first letter is lowercase and contains the parameter                 list             example :-  capital()