当前位置: 技术问答>java相关
我这段菜鸟极的程序错在哪里了?
来源: 互联网 发布时间:2015-08-22
本文导语: public class Test1 { public static void main(String[] args) { char s1[]={'W','e'}; String s=new String(char s1[]); System.out.println(s); } } | String s=new String(char s1[]); 改为: String s=new String(s1);
public class Test1
{
public static void main(String[] args)
{
char s1[]={'W','e'};
String s=new String(char s1[]);
System.out.println(s);
}
}
{
public static void main(String[] args)
{
char s1[]={'W','e'};
String s=new String(char s1[]);
System.out.println(s);
}
}
|
String s=new String(char s1[]);
改为:
String s=new String(s1);
改为:
String s=new String(s1);