标签:
位置:java.lang.String
预备知识:java中的代码点和代码单元
String
类代表字符串。Java 程序中的所有字符串字面值都作为此类的实例实现。Character
类指定的 Unicode 标准版)char
值)的方法。 String A = "lalalalala";
boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len) //测试两个字符串区域是否相等。
boolean regionMatches(int toffset, String other, int ooffset, int len) //测试两个字符串区域是否相等。
String
私有地维护。当调用 intern 方法时,如果池已经包含一个等于此 String
对象的字符串(用 equals(Object)
方法确定),则返回池中的字符串。否则,将此 String
对象添加到池中,并返回此 String
对象的引用)。
JAVA API:https://docs.oracle.com/javase/7/docs/api/
标签:
原文地址:http://www.cnblogs.com/Dumblidor/p/5520228.html