码迷,mamicode.com
首页 > 其他好文 > 详细

String 学习1(split valueof)

时间:2014-09-20 17:16:59      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:java   ar   sp   on   c   html   ef   new   r   

Strings are constant; their values cannot be changed after they are created

  String s1 = "Hello";
  String s2 = "Hello";
  System.out.println(s1==s2); //true
  
  String s3 = new String("Hello");
  String s4 = new String("Hello");
  
  System.out.println(s3 == s4); //false
  System.out.println(s3.equals(s4)); //true
  
  char [] a = {‘a‘,‘b‘,‘c‘ ,‘d‘};
  String s5 = new String(a);
  String s6 = new String(a,1,3);
  System.out.println(s5);
  System.out.println(s6); //bcd

public String[] split(String regex)

String 学习1(split valueof)

标签:java   ar   sp   on   c   html   ef   new   r   

原文地址:http://www.cnblogs.com/oraclespace/p/3983290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!