Found this reply by Tony Sintes (from Java World) :-Whenever you find yourself asking why Java has or does not have some feature, consider the design goals behind the Java language. With that in mind, I started my search by skimming through "The ...
1.what is meant by inheritance,single inhertiance,multiple inheritance?2.define abstract class & abstract method?3.how to developed and delopying a SERVELT,JSP program in the TOMCAT APACHE SERVER,WEBLOGIC
Basically inheritence means subclass inherit the features of his parent class as well as his own different additional features. The example is parents and child. The child have features from his mother and father as well as his own additional features. ...
Inheritance is the process by which one object acquires the properties of another object.
Inheritance involves building upon an existing class so that additional or more-specialised functionality is added.A key design aspect of inheritance is that it is used in a manner which is understandable and supported by a clear, justifiable relationship. ...
Why java does not support inheritance of multiple superclasses?what is achieved by inheritance?why there is no main method in servlets/jsps?
Two ways: -(1) mark the class as final(2) make its constructor private -- in this case we will also not be able to instantiate a class from any other classany doubts, let me knowVinny ...
hi,To achieve multiple Inheritance in java we must use Interface. ...
Skill/Topic: InheritanceA) TrueB) False
via interface implementation ...
A) Using Extends KeywordB) Using Imports KeywordC) Using Override keywordD) None
There is no Extends keyword that is for flash and java it should be Inherits ...
Why multiple Inheritance is not possible in C#?(Please do not answer like this-It is possible through Interfaces.)
In private inheritance derived class members can access base class members that are 1) Public 2) Private 3) Protected A) 1 & 2 B) 1 & 3 C) 2 & 3 D) 1,2 & 3
View page [1] 2 3 4 5 6 7 8 9 Next >>

Go Top