can we access the super class method using subclass object?
Answers were Sorted based on User's Feedback
Answer / azeem
Yes, you can acess the super class method by using the
subclass object because the super class methods are visible
to subclasses if not overriden. If the method is overriden,
then acess the super class method by using super.methodname
| Is This Answer Correct ? | 17 Yes | 0 No |
Answer / muthukumari
yes, we can access the base class methods using a derived
class objects.
| Is This Answer Correct ? | 9 Yes | 2 No |
If A is the super class and B is the subclass
inside subclass :
A a = new B();
a.methodA();
Here the methodA() should not be private.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is == and === in javascript?
Are variables stored in ram?
What is the preferred size of a component?
How to connect to a remote database using Applet?
How to Sort Strings which are given in List and display in ascending order without using java api.
Why is stringbuffer called mutable?
Why are inner classes required?
Can we use catch statement for checked exceptions?
What is difference between final and finally in java?
Can we clone singleton object?
What are the latest versions in JAVA related areas?
Is alive in java?