xt 发帖数: 17532 | 1
echo Hello World :-)
You can use
main(String[] args)
{
print( System.out, "Hello World");
}
private static void print( PrintStream out, String txt )
{
out.println( txt );
} |
w*******o 发帖数: 6125 | 2 你这是偷梁换柱,但还是用了main();
而且你的codes compile不通过
这道题好像是考察一下对JVM的运行
机制是否理解,但我google不到,
【在 xt 的大作中提到】 : : echo Hello World :-) : You can use : main(String[] args) : { : print( System.out, "Hello World"); : } : private static void print( PrintStream out, String txt ) : { : out.println( txt );
|
g*s 发帖数: 2277 | 3 应该可以用
static{
System.out.println("Hello World");
}
来实现吧.
【在 w*******o 的大作中提到】 : 你这是偷梁换柱,但还是用了main(); : 而且你的codes compile不通过 : 这道题好像是考察一下对JVM的运行 : 机制是否理解,但我google不到,
|
w*******o 发帖数: 6125 | 4 Compile通过了,运行也有"Hello World"输出。
尽管有Exception。
D:\>java Test
Hello World
Exception in thread "main" java.lang.NoSuchMethodError: main
在 gas (consume me) 的大作中提到: 】 |
m******t 发帖数: 2416 | 5 Interview questions like that are seemingly smart but actually
pointless.
I would just ask how static initializer works if that is
the purpose.
【在 w*******o 的大作中提到】 : Compile通过了,运行也有"Hello World"输出。 : 尽管有Exception。 : D:\>java Test : Hello World : Exception in thread "main" java.lang.NoSuchMethodError: main : 在 gas (consume me) 的大作中提到: 】
|
w*r 发帖数: 2421 | 6 http://www.developer.com/java/other/article.php/2238491
【在 m******t 的大作中提到】 : Interview questions like that are seemingly smart but actually : pointless. : I would just ask how static initializer works if that is : the purpose.
|