string类的常用方法(String类提供的合法的方法)
string类很常用,很重要。
string不像int或float, 它是参考类型。final类型, 不能被继承,string is a reference type,defined in java.lang package
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
常用方法:
length()
string greeting = “hello”;
int n = greeting.length();//is 5
charat(n)(取某个位置字符)
char first = greeting.charat(0);
char last = greeting.charat(4);
substring()(取子字符串)
string s = greeting.substring(0,3);//from 0 inclusive to 3 exclusive
concatenation(链接)
string a = greeting + “ world!”+ 2009;
equality(don’t use ==)(测试是否相等)
string s = “hello”; s.equals(greeting);
“hello”.equalsignorecase(“hello”);(忽略大小写的测试相等)
本章源码
例子:
public class test {
public static void main(string args[]) {
string letters = “abcdefghijklabcdefghijkl”;
/*这里讲讲阅读源代码,control点击进入方法*/
system.out.println(“‘c’在第” + letters.indexof(‘c’) + “个”);