java中String的一些方法】的更多相关文章

String : 字符串类型 一.      String sc_sub = new String(c,3,2);    //      String sb_copy = new String(sb);       //abcdefghij        System.out.println("sb:"+sb);      System.out.println("sb_sub:"+sb_sub);      System.out.println("sc:&…
转载自:http://www.cnblogs.com/YSO1983/archive/2009/12/07/1618564.html String : 字符串类型 一.      String sc_sub = new String(c,3,2);    //      String sb_copy = new String(sb);       //abcdefghij        System.out.println("sb:"+sb);      System.out.prin…
该方法去除两边的空白符 原理: 看看源码实现 public String trim() { int len = value.length; ; char[] val = value; /* avoid getfield opcode */ while ((st < len) && (val[st] <= ' ')) { st++; } ] <= ' ')) { len--; } ) || (len < value.length)) ? substring(st, l…
一个例子 public class TestString{ public static void main(String[] args){ String a = "a"; String b = a+"b"; String c = "ab"; String d = "a" + "b"; System.out.println(c == d); //true!!!! System.out.println(c ==…
1.public String(char[] c,begin,length). 从字符数组c的下标begin处开始,将长度为length的字符数组转换为字符串. begin与length可以省略,即将字符数组c转换为字符串.另:字符数组可改为字节数组byte[] b. char[] c=new char[]{'j','y','6','a','4','t','9'};  String s1=new String(c);  String s=new String(c,2,3);  System.ou…
1.concat()方法,当参数为两字符串时,可实现字符串的连接: package cn.nxl123.www; public class Test { public static void main(String[] args) { String string=new String("abcdef"),tString=new String("123"); System.out.println("连接两个字符串:"); System.out.pr…
public String[] split(String regex, int limit) split函数是用于使用特定的切割符(regex)来分隔字符串成一个字符串数组,这里我就不讨论第二个参数(可选)的含义详见官方API说明 我在做项目期间曾经遇到一个“bug”,就是当split函数处理空字符串时,返回数组的数组竟然有值...查完API才发现就是这么规定的. 官方API 写道 If the expression does not match any part of the input th…
http://tjuking.iteye.com/blog/1507855 和我想的还是不大一样,因为不知道源码也不知道具体是怎么实现的,我的理解如下: 当字符串只包含分隔符时,返回数组没有元素:当字符串不包含分隔符时,返回数组只包含一个元素(该字符串本身):字符串最尾部出现的分隔符可以看成不存在,不影响字符串的分隔:字符串最前端出现的分隔符将分隔出一个空字符串以及剩下的部分的正常分隔: javascript也有split()函数,我想应该也是类似的,还没有来得及尝试.…
一String 使用 private final char value来实现字符串存储 二Java中String的创建方法四种 三在深入了解String创建机制之前要先了解一个重要概念常量池Constant Pool 四直接使用 双引号的创建机制 五用new stringstring的创建机制 六Java内存模型 一.String 使用 private final char value[]来实现字符串存储 所以String对象创建之后就不能再修改此对象中存储的字符串内容,所以说String本质是…
1.对于基本数据类型,可以直接使用==和!=进行内容比较 如:int x=30;        int y=30;         x==y;  //true 基本数据类型 简单类型(基本类型) boolean byte char short int long float double void 二进制位数 1 8 16 16 32 64 32 64 -- 封装器类 Boolean Byte Character Short Integer Long Float Double Void      …