hi to all,i have a question on static block.
i saved below as test.java


class test extends a
{
static {
System.out.println("test static");
}
public static void main(String []dfs)
{


}



}
class a
{
static
{
System.out.println("a static");
}
public static void main(String []asdf)
{

}

}

o/p
as static
test static

but if i change base class as test class then

class test
{
static {
System.out.println("test static");
}
public static void main(String []dfs)
{


}



}
class a extends test
{
static
{
System.out.println("a static");
}
public static void main(String []asdf)
{

}

}
o/p
test static

explain me why "a static" wasn't print in second code when
it is in derived class



hi to all,i have a question on static block. i saved below as test.java class test extends a ..

Answer / ashish

just chek again ur code

class test extends a
{
static {
System.out.println("test static");
}
public static void main(String []dfs)
{


}



}
class a
{
static
{
System.out.println("a static");
}
public static void main(String []asdf)
{

}

}

it;s genrate the o/p
a static


class test
{
static {
System.out.println("test static");
}
public static void main(String []dfs)
{


}



}
class a extends test
{
static
{
System.out.println("a static");
}
public static void main(String []asdf)
{

}

}



test static
a static


ok jst analyze ur problem thn contact me
ashish.gupta126126@gmail.com

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

hoe can u call a constructor of a private classs to other inherited claa??

1 Answers  


What is a nested list?

0 Answers  


What is string english?

0 Answers  


Explain about anonymous inner classes ?

0 Answers  


Is java supports multiple inheritance? explain?

12 Answers   BUET, Inforica,


can rmi and corba based applications interact ?

0 Answers  


How do you declare a string variable?

0 Answers  


what is class.forname() and how it will be useful ?

3 Answers  


Is java hard to learn?

0 Answers  


What are scriptlets?

0 Answers  


Is it necessary that each try block must be followed by a catch block?

0 Answers  


what is servlet enginee?

0 Answers   Covansys,


Categories