当前位置: 技术问答>java相关
期中考试题,有兴趣的看看!
来源: 互联网 发布时间:2015-05-25
本文导语: 一共就两道题,一道题如下: public class Test { public static void main(String[] args) { ShowClassName.Show(); } } class ShowClassName { public static void Show() { ... } } 请完成...
一共就两道题,一道题如下:
public class Test
{
public static void main(String[] args)
{
ShowClassName.Show();
}
}
class ShowClassName
{
public static void Show()
{
...
}
}
请完成Show()函数实现现实调用者的类名,如本题应为:"Test";
要求:不能添加"ShowClassName"类的成员。
40分送第一个答对的。
public class Test
{
public static void main(String[] args)
{
ShowClassName.Show();
}
}
class ShowClassName
{
public static void Show()
{
...
}
}
请完成Show()函数实现现实调用者的类名,如本题应为:"Test";
要求:不能添加"ShowClassName"类的成员。
40分送第一个答对的。
|
try
{
throw new RuntimeException("this is a bad hack!!!!!");
}
catch(Throwable t)
{
StackTraceElement[] trace = t.getStackTrace();
System.out.println(trace[1].getClassName());
}
and it only works in jdk1.4
What a "Wu Ren Zi Di" question!
{
throw new RuntimeException("this is a bad hack!!!!!");
}
catch(Throwable t)
{
StackTraceElement[] trace = t.getStackTrace();
System.out.println(trace[1].getClassName());
}
and it only works in jdk1.4
What a "Wu Ren Zi Di" question!