calling a constructor..!!
Calling constructor First of all we all know that for what constructor is used for to initialize the members of class right..!! Same as we initialize normally or by method calling and in it we initialize but when constructor is called one answer we know generally when we define object that is when we instantiate the object at that time the constructor is called what is the other method by can we call the constructor its by inheriting that class with other class and calling that classes constructor automatically the base class constructor will be called when we call the derived one. for example lets take a class Abc now we want to call the constructor of class Abc like Abc o1= new Abc( ) So constructor of Abc will be called automatically . Now question arises that if we didnt define the constructor than will it call any one ,,? yess its a conv...