Posts

Showing posts with the label class

How to protect a class by an object creation by another class?

Answer : By making a constructor to private . Example :                      Class Dinesh                 { private Dinesh(){                 // Code will be here                        } }  

How to protect a class to be inherited ?

  Answer : By adding a final keyword in before class name . Example :                                  Class final Class_name                          { Code will be here }