public class test { public static void main (String []args){String s;System.out.println(s"="+s);}}
public class test { public static void main (String []args){String s;System.out.println(s"="+s);}}
日期:2018-03-12 20:32:41 人气:1
编译错误。
错误1.s"="+s ---> "s=" + s;
错误2.因为s没有被初始化,因此编译通不过。
这个he String str = null;不同
希望对你有所帮助