黑马程序员_Java常用类API

-------    android培训java培训、期待与您交流! ----------

   API(Application Programming Interface,应用程序编程接口)是一些预先定义的函数,目的是提供应用程序与开发人员基于某软件或硬件的以访问一组例程的能力,而又无需访问源码,或理解内部工作机制的细节。

  Java中用String类进行描述、对字符串进行了对象的封装以便对字符串这种常见数据进行方便的操作。

String类特点:   

   字符串是一个特殊的对象

   字符串一旦初始化就不可以被改变,存放在方法区中的常量池中

    只要是双引号引起的数据都是字符串对象
 String str  = “abc”与 String str1 = new String(“abc”)的区别:

         String s1 = "abc"; // s1指向的内存中只有一个对象abc

         String s2 = new String("abc"); // s2指向的内容中有两个对象abc、new

         System.out.println(s1==s2);//false

         System.out.println(s1.equals(s2));//true,字符串中equals比较的是 字符串内容是否相同
 
字符串的方法:
    构造方法:将字节数组或者字符数组转成字符串       

          String s1 = newString();//创建了一个空内容的字符串

          String s2 =null;//s2没有任何对象指向,是一个null常量值

          String s3 = "";//s3指向一个具体的字符串对象,只不过这个字符串中没有内容 

    String s4 = newString("abc");//一般在定义字符串时不用此方法

    String s5 ="abc"; //一般用此写法

 new String(char[]);//将字符数组转成字符串

 newString(char[],offset,count);//将字符数组中的一部分转成字符串

 按照面向对象的思想对字符串进行功能分类

String类常用方法摘要
charcharAt(int index)返回指定索引处的 char 值。
intcompareTo(String anotherString)按字典顺序比较两个字符串。
intcompareToIgnoreCase(String str)按字典顺序比较两个字符串,不考虑大小写。
Stringconcat(String str)将指定字符串连接到此字符串的结尾。
booleancontains(CharSequence s)当且仅当此字符串包含指定的 char 值序列时,返回 true。
booleancontentEquals(CharSequence cs)将此字符串与指定的 CharSequence 比较。
booleancontentEquals(StringBuffer sb)将此字符串与指定的 StringBuffer 比较。
static StringcopyValueOf(char[] data)返回指定数组中表示该字符序列的 String。
static StringcopyValueOf(char[] data, int offset, int count)返回指定数组中表示该字符序列的 String
booleanendsWith(String suffix)测试此字符串是否以指定的后缀结束。
booleanequals(Object anObject)将此字符串与指定的对象比较。
booleanequalsIgnoreCase(String anotherString)将此 String 与另一个 String 比较,不考虑大小写
static Stringformat(Locale l,String format, Object... args) 使用指定的语言环境、格式字符串和参数返回一个格式化字符串。
static Stringformat(String format,Object... args) 使用指定的格式字符串和参数返回一个格式化字符串。
byte[]getBytes() 使用平台的默认字符集将此 String 编码为 byte 序列,并将结果存储到一个新的 byte 数组中。
byte[]getBytes(Charset charset)使用给定的 charset 将此String 编码到 byte 序列,并将结果存储到新的 byte 数组。
byte[]getBytes(String charsetName)使用指定的字符集将此 String 编码为 byte 序列,并将结果存储到一个新的 byte 数组中。
voidgetChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) 将字符从此字符串复制到目标字符数组。
inthashCode() 返回此字符串的哈希码。
intindexOf(int ch) 返回指定字符在此字符串中第一次出现处的索引。
intindexOf(int ch, int fromIndex)返回在此字符串中第一次出现指定字符处的索引,从指定的索引开始搜索。
intindexOf(String str)返回指定子字符串在此字符串中第一次出现处的索引。
intindexOf(String str, int fromIndex) 返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始。
Stringintern()返回字符串对象的规范化表示形式。
booleanisEmpty() 当且仅当 length()0 时返回true
intlastIndexOf(int ch)返回指定字符在此字符串中最后一次出现处的索引。
intlastIndexOf(int ch, int fromIndex)返回指定字符在此字符串中最后一次出现处的索引,从指定的索引处开始进行反向搜索。
intlastIndexOf(String str)返回指定子字符串在此字符串中最右边出现处的索引。
intlastIndexOf(String str, int fromIndex)
          返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索。
intlength() 返回此字符串的长度。
intoffsetByCodePoints(int index, int codePointOffset) 返回此 String 中从给定的 index 处偏移 codePointOffset 个代码点的索引。
booleanregionMatches(boolean ignoreCase, int toffset,String other, int ooffset, int len) 测试两个字符串区域是否相等。
booleanregionMatches(int toffset,String other, int ooffset, int len) 测试两个字符串区域是否相等。
Stringreplace(char oldChar, char newChar) 返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。
Stringreplace(CharSequence target,CharSequence replacement)使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串。
StringreplaceAll(String regex,String replacement)使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。
StringreplaceFirst(String regex,String replacement)使用给定的 replacement 替换此字符串匹配给定的正则表达式的第一个子字符串。
String[]split(String regex)根据给定正则表达式的匹配拆分此字符串。
String[]split(String regex, int limit)根据匹配给定的正则表达式来拆分此字符串。
booleanstartsWith(String prefix) 测试此字符串是否以指定的前缀开始。
booleanstartsWith(String prefix, int toffset) 测试此字符串从指定索引开始的子字符串是否以指定前缀开始。
CharSequencesubSequence(int beginIndex, int endIndex)返回一个新的字符序列,它是此序列的一个子序列。
Stringsubstring(int beginIndex)返回一个新的字符串,它是此字符串的一个子字符串。
Stringsubstring(int beginIndex, int endIndex) 返回一个新字符串,它是此字符串的一个子字符串。
char[]toCharArray()将此字符串转换为一个新的字符数组。
StringtoLowerCase() 使用默认语言环境的规则将此 String 中的所有字符都转换为小写。
StringtoLowerCase(Locale locale)使用给定 Locale 的规则将此 String 中的所有字符都转换为小写。
StringtoString() 返回此对象本身(它已经是一个字符串!)。
StringtoUpperCase() 使用默认语言环境的规则将此 String 中的所有字符都转换为大写。
StringtoUpperCase(Locale locale) 使用给定 Locale 的规则将此 String 中的所有字符都转换为大写。
Stringtrim()返回字符串的副本,忽略前导空白和尾部空白。
static StringvalueOf(boolean b)返回 boolean 参数的字符串表示形式。
static StringvalueOf(char c) 返回 char 参数的字符串表示形式。
static StringvalueOf(char[] data)返回 char 数组参数的字符串表示形式。
static StringvalueOf(char[] data, int offset, int count)返回 char 数组参数的特定子数组的字符串表示形式。
static StringvalueOf(double d)返回 double 参数的字符串表示形式。
static StringvalueOf(float f)返回 float 参数的字符串表示形式。
static StringvalueOf(int i) 返回 int 参数的字符串表示形式。
static StringvalueOf(long l) 返回 long 参数的字符串表示形式。
static StringvalueOf(Object obj)返回 Object 参数的字符串表示形式。

 

StringBuffer字符串缓冲区

          可以对字符串内容进行修改的可变长度的容器

          缓冲区中可以存储任意类型的数据,最终需要变成字符串

  常用方法:

      1,添加: 
         StringBuffer append(data); 
         StringBuffer insert(index,data); 
      2,删除: 
         StringBuffer delete(start,end):包含头,不包含尾。 
         StringBuffer deleteCharAt(int index):删除指定位置的元素  
      3,查找: 
         char charAt(index); 
         int indexOf(string); 
         int lastIndexOf(string); 
      4,修改: 
         StringBuffer replace(start,end,string); 
         void setCharAt(index,char); 


StringBuilder      

       从 JDK 5 开始,补充了一个单个线程使用的等价类,即 StringBuilder。与该类相比,通常应该优先使用 StringBuilder 类,因为它支持所有相同的操作,但由于它不执行同步,所以速度更快。

方法与StrinBuffer一样

二者区别:

     StringBuffer线程安全

     StringBuilder线程不安全

     单线程操作,使用StringBuilder 效率高

     多线程操作,使用StringBuffer 安全

 

基本数据类型对象包装类

    为了方便操作基本数据类型值,将其封装成了对象,在对象中定义了属性和行为丰富了该数据的操作

     byte    Byte 
     short   Short 
     int       Integer 
     long    Long 
     float    Float 
     double   Double 
     char       Character 
     boolean   Boolean

IntegerparseInt方法,intValue方法:

    1:将该字符串封装成了Integer对象,并调用对象的方法intValue()

    2:使用Integer.parseInt(numstring):不用建立对象,直接类名调用

在jdk1.5版本后,对基本数据类型对象包装类进行升级。在升级中,使用基本数据类型对象包装类可以像使用基本数据类型一样,进行运算。

    Integer i = newInteger(4); //1.5版本之前的写法

    Integeri = 4; //自动装箱,1.5版本后的写法

  拆箱的原理就是i.intValue()

 

 

 

  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值