常见对象(String类概述和判断功能)
String类概述
•字符串是由多个字符组成的一串数据(字符序列)
•字符串可以看成是字符数组
l
构造方法
•
public String()
•
public String(byte
[] bytes
)
•
public String(byte[]
bytes,int
offset,int
length
)
•
public String(char[] value
)
•
public String(char[]
value,int
offset,int
count
)
•
public String(String original)
l字符串是常量,它的值在创建之后不能更改
•String s = “hello”; s += “world”; 问s的结果是多少?
结果为:helloworld ----字符串是常量,一旦赋值,就不能改变---(值不变指其hello不变但是其S
共有 0 条评论