每日一练代码题 ------------2020-04-21
程序员文章站
2022-03-05 10:57:11
...
欢迎大家关注我的公众号 【软件测试小助手】 分享我是如何学习测试的
该题,来自我微信收藏了好久的一道代码题
下面的结果分别是?
代码一:
public class Test{
static String str;
public static void main(String[] args) {
static String str;
System.out.println(str);
}
}
结果:
代码二:
public class Test{
static String str;
public static void main(String[] args) {
String str;
System.out.println(str);
}
}
结果:
3、 代码三
public class Test{
static String str;
public static void main(String[] args) {
System.out.println(str);
}
}
结果未编译报错
你答对了么???