String类的源码分析
之前面试的时候被问到有没有看过String类的源码,楼主当时就慌了,回来赶紧补一课。
1.构造器(构造方法)
String类提供了很多不同的构造器,分别对应了不同的字符串初始化方法,此处从源码中摘录如下:
其中蓝色的实心三角表示no modifier(没有修饰符,friendly),表示只能被同一个包中的所有类访问,而不同包中的类不能访问。
这里举了一些示例,来说明这些构造器的用法:
String string = new String();
System.out.println(string.isEmpty());
String string = new String("hello world");
System.out.println(string);
char[] arr = {'A','B', 'C', '1', '2', '3'};
String arrString = new String(arr);
System.out.println(arrString);
char[] arr = {'A','B', 'C', '1', '2', '3'};
String arrString = new String(arr, 1, 4);
System.out.println(arrString);
int[] codepoints = {101, 97, 98, 99};
String string = new String(codepoints, 0, 3);
System.out.println(string);
StringBuffer buffer = new StringBuffer("hello");
2 buffer.append(" world");
3 String string = new String(buffer);
4 System.out.println(string);
StringBuilder builder = new StringBuilder("hello");
builder.append(" world");
String string = new String(builder);
System.out.println(string);
这里提到构造器,笔者想补充一个问题:构造器真的没有返回值吗?既然没有返回值,那么为什么不能用void关键字来修饰?
解析:其实这只是Java语法上的一个规定。实际上,类的构造器是有返回值的,当我们用new关键字来调用构造器时,会返回一个该类的实例对象,并将这个实例对象在堆内存中的地址赋给了一个该类类型的引用变量。因此,构造器的返回值类型总是当前类,所以就无须定义返回值类型。但必须注意的是,不能在构造器里显式地使用return关键字来返回当前类的对象,因为构造器的返回值是隐式的。
2.成员方法
- charAt(int index) 返回字符串中下标为index的字符,返回值为char型
String string = new String("hello world");
System.out.println(string.charAt(0));
- codePointAt(int index) 返回下标为index的字符的unicode码
- codePointBefore(int index) 返回下标为index-1的字符的unicode码
- codePointCount(int beginIndex, int endIndex) 返回下标从beginIndex到endIndex的字符数
String string = "hello world";
System.out.print(string.charAt(4)+" ");
System.out.println(string.codePointAt(4));
System.out.print(string.charAt(4)+" ");
System.out.println(string.codePointBefore(5));
System.out.println(string.codePointCount(0, 6));
- equals(Object obj) 比较两个字符串是否相同,返回值为true或者false,此外还有equalsIgnoreCase(String anotherString),即忽略大小写的比较
注意:1.字符串之间的比较时,比较的是字符串的内容而不是地址,并且只能用于比较String类型,因为StringBuffer和StringBuilder都没有equals()方法;
2.非字符串之间的比较时,比较的是引用的地址而不是内容,可以用于StringBuffer和StringBuilder类型。
String string = "hello";
System.out.println(string.equals("hello")); //true String s1 = "hello";
System.out.println(string.equals(s1)); //true String s2 = new String("hello");
String s3 = new String("hello");
System.out.println(s2.equals(s3)); //true /* 注意:StringBuffer和StringBuilder都没有equals()方法
所以调用equals()方法时,比较的是引用变量的地址,所以结果均为false*/
StringBuffer s4 = new StringBuffer("hello");
StringBuilder s5 = new StringBuilder("hello");
StringBuffer s6 = new StringBuffer("hello");
StringBuilder s7 = new StringBuilder("hello");
System.out.println(s1.equals(s4)); //false
System.out.println(s2.equals(s5)); //false
System.out.println(s4.equals(s5)); //false
System.out.println(s4.equals(s6)); //false
System.out.println(s5.equals(s7)); //fals
String string = "hello";
System.out.println(string.equalsIgnoreCase("Hello")); //true
- toCharArray() 字符串转换为数组,返回值为一个char类型的数组
注意:字符数组转换为字符串可以用构造器String(char[]) 实现
String string = "hello world";
char[] charArr = string.toCharArray();
for(char ch: charArr){
System.out.print(ch+" ");
}
- 此外,String类还有很多成员方法,这里简单列举一些常用的:
startsWith(String prefix) endsWith(String suffix) indexOf(int ch) indexOf(int ch, int fromIndex) lastIndexOf(int ch) lastIndexOf(int ch, int fromIndex) indexOf(String str) indexOf(String str, int fromIndex) substring(int beginIndex) substring(int beginIndex, int endIndex) replace(char oldChar, char newChar) matches(String regex) contains(CharSequence s) replaceAll(String regex, String replacement) split(String regex) toLowerCase() toUpperCase() trim()
String类的源码分析的更多相关文章
- JDK中String类的源码分析(二)
1.startsWith(String prefix, int toffset)方法 包括startsWith(*),endsWith(*)方法,都是调用上述一个方法 public boolean s ...
- JDK中String类的源码分析(一)
1.String类是final的,不允许被继承 /** The value is used for character storage. */ private final char value[]; ...
- Spring-MongoDB 关键类的源码分析
本文分析的是 spring-data-mongodb-1.9.2.RELEASE.jar 和 mongodb-driver-core-3.2.2.jar. 一.UML Class Diagram 核心 ...
- Set集合架构和常用实现类的源码分析以及实例应用
说明:Set的实现类都是基于Map来实现的(HashSet是通过HashMap实现的,TreeSet是通过TreeMap实现的). (01) Set 是继承于Collection的接口.它是一个不允许 ...
- String,StringBuffer,StringBuilder源码分析
1.类结构 String Diagrams StringBuffer Diagrams StringBuilder Diagrams 通过以上Diagrams可以看出,String,StringBuf ...
- Mybatis Mapper接口是如何找到实现类的-源码分析
KeyWords: Mybatis 原理,源码,Mybatis Mapper 接口实现类,代理模式,动态代理,Java动态代理,Proxy.newProxyInstance,Mapper 映射,Map ...
- java类uuid源码分析
通用唯一识别码(英语:Universally Unique Identifier,简称UUID)是一种软件建构的标准,亦为自由软件基金会组织在分散式计算环境领域的一部份.UUID的目的,是让分散式系统 ...
- 【Cocos2d-x 3.x】 动作类Action源码分析
游戏设计中,动作是不可缺少的,Cocos2d-x中所有的动作都继承自Action类,而Action类继承自Ref和Clonable类,整个动作类继承体系如图: FiniteTimeAction是所有瞬 ...
- String、StringBuffer、StringBuilder源码分析
利用反编译具体看看"+"的过程 1 public class Test 2 { 3 public static void main(String[] args) 4 { 5 int ...
随机推荐
- Apache Storm 1.1.0 中文文档 | ApacheCN
前言 Apache Storm 是一个免费的,开源的,分布式的实时计算系统. 官方文档: http://storm.apache.org 中文文档: http://storm.apachecn.org ...
- Eclipse安装Hibernate插件快速生成配置文件
Eclipse安装Hibernate插件快速生成配置文件 插件链接: http://pan.baidu.com/s/1mi3KVtI 密码: kmjg 1.安装插件: 1.在eclipse顶部窗口he ...
- 8.8.2 Final关键字
final表示不可改变的含义 1.采用final 修饰的类不能被继承 2.采用final 修饰的方法不能被覆盖 3.采用final 修饰的变量不能被修改 4.final修饰的变量必须显示初始化(该 ...
- Java初学者必知 关于Java字符串问题
摘自 http://developer.51cto.com/art/201503/469443.htm 下面我为大家总结了10条Java开发者经常会提的关于Java字符串的问题,如果你也是Java初学 ...
- django框架简介
-------------------MVC与MVT框架-------------------1.MVC MVC框架的核心思想是:解耦.降低各功能模块之间的耦合性,方便将来变化时,更容易重构代码,最大 ...
- Python内存优化
实际项目中,pythoner更加关注的是Python的性能问题,之前也写过一篇文章<Python性能优化>介绍Python性能优化的一些方法.而本文,关注的是Python的内存优化,一般说 ...
- HTML <area><map>标签及在实际开发中的应用
之前,我一直以为HTML <area>是一个鸡肋HTML,估计到了HTML5时代会被废弃的命.但是,最近一查资料,乖乖了个咚,不仅没被废弃,反而发展了,新增了一些标签属性,例如rel,me ...
- 《个人-GIT使用方法》
使用GIT版本控制工具及基本使用方法(安装,新建,推送,拉取),托管平台的使用方法. Git 常用命令 git init here -- 创建本地仓库(repository),将会在文件夹下创建一个 ...
- python爬虫scrapy框架——人工识别知乎登录知乎倒立文字验证码和数字英文验证码
目前知乎使用了点击图中倒立文字的验证码: 用户需要点击图中倒立的文字才能登录. 这个给爬虫带来了一定难度,但并非无法解决,经过一天的耐心查询,终于可以人工识别验证码并达到登录成功状态,下文将和大家一一 ...
- Java异常的性能分析
详见:http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt276 在Java中抛异常的性能是非常差的.通常来说,抛一个异常大概会消耗10 ...