Encapsulation in Java | BeingStudy.com

Definition : Encapsulation in java is a process of wrapping code i.e data (Variables) and and processes performed on that data i.e methods together into a single unit called class. For example capsu 👉👉👉🌹
Read More

this keyword in Java | BeingStudy.com

this keyword  The this keyword can be used to refer current class instance variable. If there is ambiguity between the instance variables and parameters, this keyword resolves the problem of ambigui 👉👉👉🌹
Read More

super keyword in java | BeingStudy.com

Super keyword : The super keyword in java is used in three ways :-  super can be used to refer immediate parent class instance variable. super can be used to invoke immediate parent class 👉👉👉🌹
Read More

final keyword in java | Beingstudy.com

final keyword final keyword is used for restrictions. It is used with variable to restrict its re assignment, it is used with method to restrict its overriding and it is used with class  to restri 👉👉👉🌹
Read More

Constructor in Java | BeingStudy.com

Definition : A Constructor  is used to initialize a newly created object and is called just after the memory is allocated for the object. It can be used to initialize the objects with the default val 👉👉👉🌹
Read More