首页上一页 1 下一页尾页 3 条记录 1/1页
java入门到精通
发表在Java图书答疑
2015-08-10
是否精华
是
否
版块置顶:
是
否
《Java从入门到精通(第三版)》清华大学出版社 第5章字符串 5.1 String类 例5.3:
chara[]={'s','t','u','d','e','n','t'};
String s=new String(a,2,4);---->等价于String s=new String(uden);
这个例子感觉不对,我认为应该是String s=new String(ude);
例5.4:chara[]={'s','t','u','d','e','n','t'};
String s=new String(a);--->等价于String s=new String(studen);
我认为应该等价于String s=new String(student);
例5.11:在项目中创建类Ref,在主方法中创建String对象,使用charAt()方法查看字符串str中索引位置是5的字符。
public class Ref{
public static void mani(String args[]){
String str="hello world";
char mychar=str.charAt(5);
System.out.println("字符串str中索引位置是5的字符为:"+muchar);
}
}
运行结果如图5.7所示:
字符串str中索引位置是5的字符为:w
我认为字符串str中索引位置是5的字符为: ,
老师能帮我解答一下吗?
chara[]={'s','t','u','d','e','n','t'};
String s=new String(a,2,4);---->等价于String s=new String(uden);
这个例子感觉不对,我认为应该是String s=new String(ude);
例5.4:chara[]={'s','t','u','d','e','n','t'};
String s=new String(a);--->等价于String s=new String(studen);
我认为应该等价于String s=new String(student);
例5.11:在项目中创建类Ref,在主方法中创建String对象,使用charAt()方法查看字符串str中索引位置是5的字符。
public class Ref{
public static void mani(String args[]){
String str="hello world";
char mychar=str.charAt(5);
System.out.println("字符串str中索引位置是5的字符为:"+muchar);
}
}
运行结果如图5.7所示:
字符串str中索引位置是5的字符为:w
我认为字符串str中索引位置是5的字符为: ,
老师能帮我解答一下吗?