Can we catch more than one exception in a single catch block?
No Answer is Posted For this Question
Be the First to Post Answer
what is the purpose of class "Object" which is base class for all classes?
What is a local, member and a class variable?
can we overload main method?
What are batch updates. in jdbc
Is void a data type?
What is difference between Eclips and MyEclips?
what state does a thread enter when it terminates its processing? : Java thread
Difference between string, stringbuffer and stringbuilder?
What does a void function return?
what is difference between type 4 driver and type 1 driver?
2 Answers CMC, CTS, IBM, JK Technosoft, Napier Healthcare,
Is break statement can be used as labels in java?
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }