学习JAVA打卡第三十八天

String 类的常用方法

⑴public int length()

String 类中的length()方法获取了一个String对象的字符序列的长度,例如:

 String china =“1945年抗战胜利”;

  int n1,n2;

 n1=china.length();

 n2=“小鸟fly”.length();

那么n1的值是9,n2的值是5。

⑵public boolean equals(string s)

string对象调用equals(string s)方法比较当前string对象的字符序列是否参与s指定的string对象的字符序列相同,例如:

学习JAVA打卡第三十八天_第1张图片

那么,tom equals(boy)的值是false,tom.equals(jerry)的值是true。

注:关系表达式tom=jerry的值是false。因为string对象tom.jerry中存放的是引用。string对象调用public Boolean equalsgnore -Case(string s)比较当前string对象的字符序列与参数指定的string对象s的字符序列是否相同,比较是忽略大小写。

⑶public boolean startsWith(string s)、public boolean endwith(string s)方法

string对象调用startswith(string s)方法,判断当前string对象的字符序列前缀是否参数指定的string对象s的字符序列,例如:

string tom=“天气预报,阴有小雨”,Jerry=“比赛结果,中国赢得胜利”;

⑷public int compareTo(string s)方法

string str=“abcde”;

⑸public boolean contains(string s)

⑹public int indexOf(string s)和public int lastIndex(string s)

⑺public string substring (int startpoint)

⑻public string trim()

今天就这样明天继续gogogo!

你可能感兴趣的:(java,学习,开发语言)