首页 > 其他 > 详细

String类常见的方法

时间:2015-10-07 22:48:18      阅读:221      评论:0      收藏:0      [点我收藏+]

类String

public final class String 

extends Object 

implements Serializable, comparable<String>, CharSequence

String 类代表字符串。Java 程序中的所有字符串字面值(如 "abc" )都作为此类的实例实现。

字符串是常量;它们的在创建之后不能更改。字符串缓冲区支持可变的字符串。 

 

 

 

 

 

 

 

常用方法:

public char charAt(int index)  ==》返回指定位置的字符(0-length()-1);
形象记法: charAt(At在)(int index位置)

在可以看下面的底层源码:return value[index];就是返回字符串指定位置的字符

技术分享

 

 

 

public boolean startsWith(String prefix)
测试此字符串是否以指定的前缀开始。
技术分享
public boolean startsWith(String prefix,
                          int toffset)
测试此字符串从指定索引开始的子字符串是否以指定前缀开始。

 

参数:
prefix - 前缀。
toffset - 在此字符串中开始查找的位置。 

技术分享























 

 

 

 

 

 

 


 

String类常见的方法

原文:http://www.cnblogs.com/chengbao/p/4859635.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!