soumyanil Kayal

Greenhorn
+ Follow
since Jun 05, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by soumyanil Kayal

How is an inner class diferent from a subclass in terms of:
Whether an inner class can extend any other class?
Can it be declared static,private?
23 years ago
Hi Rahul,
Thanx for the pains that ur taking.
My query was whether by calling the method dd,which I have declared as final, in another class(whether nested or by extending),will I get the desired output ie My name is Som.I want to know whether just by calling a final method,am I overriding it?
23 years ago
B is a nested class.
23 years ago
Can I do this:
class A{
final dd(){
System.out.println("My name is Som");
}
class B{
public static void main(String args[]){
A a=new A();
a.dd();
}
}
}
Will I be overriding a final method by this?
23 years ago
Why do we have a String array in the main method?
23 years ago