Posted in 面试题 onApril 22, 2013
public class Static
{
static
{
int x = 5;
}
static int x,y;
public static void main(String args[])
{
x–; myMethod();
System.out.println(x + y + ++x);
}
public static void myMethod()
{
y = x++ + ++x;
}
}
答案:
答案:3
{
static
{
int x = 5;
}
static int x,y;
public static void main(String args[])
{
x–; myMethod();
System.out.println(x + y + ++x);
}
public static void myMethod()
{
y = x++ + ++x;
}
}
答案:
答案:3
Java面试题:请说出如下代码的输出结果
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@