常见对象(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

常见对象(String类概述和判断功能)最先出现在Python成神之路

版权声明:
作者:主机优惠
链接:https://www.techfm.club/p/24538.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>