2:String类(掌握)
键盘录入:int————int可以;
string————string可以
string————int可以;
但是int——string 不行;因为把回车换行符给了string
(1)字符串:多个字符组成的一串数据。
(2)构造方法:
A:String s = new String();
B:String s = new String(byte[] bys);
C:String s = new String(byte[] bys,int index,int length);字节数组。
D:String s = new String(char[] chs);
E:String s = new String(char[] chs,int index,int length);
F:String s = new String(String str);
G:String s = "hello";
(3)字符串的特点及面试题
A:字符串一旦被赋值,就不能改变。
注意:这里说的时字符串在常量池值不能改变,
没有说引用变量不能改变。
B:面试题:
a:String s = new String("hello")和String s = "hello"的区别。
在内存中有两个对象存在, 内存中有一个对象存在,
b:请写出结果:
String s1 = new String("hello");
String s2 = new String("hello");
System.out.println(s1==s2);//false
System.out.println(s1.equals(s2));//true