Oop
Oop
Interface : is a special block of java which only contain set of abstract method to
provide complete data abstraction.
polymorphism :
when same message given to generalised things for same Behaviour but implemented
differently is called polymorphism
A class with multiple methods by the same name but different parameters called
method overloading
in method overriding a child class has the same method name, same method signature
and same return types as a method in its parent class, then the child class method
haas overriden the parent class method.
this Keyword :
-> Refer current invoking object.
-> this()->for calling current class constructor from inside different constructor
of same class.
Super Keyword:
-> Super Keyword refer to immediate parent
super()-> use to call parent class Constructor from inside child class constructor
Threads allows a program to operate more efficiently by doing multiple things at
the same time.