合肥Java面试常考题_java面试常考题-String

首先String类是final修饰的,因此他是不可变的量,而StringBuilder(非线程安全,速度最快)和StringBuffer是可变量,

String中常用的几个方法:

int length();返回字符串长度

boolean contains;是否包含参数字符串

int indexOf(String str);从左到右查找字符串,返回找到的第一个

String s ="wangjianxin";

System.out.println(s.indexOf("a"));

输出:1

int indexOf(String str, int fromIndex);从intfromIndex下标位置向右查找字符串,返回找到的第一个

String s ="wangjianxin";

System.out.println(s.indexOf("a",3));

输出6

int lastIndexOf(String str);从右到左查找字符串,也是返回找到的第一个

String s ="wangjianxin";

System.out.println(s.lastIndexOf("a"));

输出6

int lastIndexOf(String str, int fromIndex);从intfromIndex下标位置向左查找字符串,返回找到的第一个

String s ="wangjianxin";

System.out.println(s.lastIndexOf("a",6));

这里的fromIndex是6,那就从下标6的位置开始向左查找,发现第一个就是所以返回6

String substring(int beginIndex);从intbeginIndex截取下标开始到最后的字符串

String s ="wangjianxin";

System.out.println(s.substring(2));

输出:ngjianxin

String substring(int beginIndex, int endIndex);截取beginIndex下标到endIndex,不包括endIndex下标元素

String s ="wangjianxin";

System.out.println(s.substring(0,3));

输出:wan

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值