经常碰到比较字符串的题, eg: public class StringDemo{ private static final String MESSAGE = "taobao"; public static void main(String [] args){ String a = "tao" + "bao"; Strign b = "tao"; String c = "bao"; System.out.p…
1.String 类 2.StringBuilder 类 1.String类 1.1.构造方法 String的构造方法格式 说明 new String(String st) 把字符串数据封装成字符串对象 new String(char[] value) 使用一个字符数组创建字符串,…… new String(char[] value, int offset, int count) 使用一个字符数组创建字符串,从字符数组中截取.起始位置offset,和count个元素 Java程序中,所有的字符串…
package demo; public class Test { public static void main(String[] args) { String str1 = new String("hello"); String str2 = new String("hello"); System.out.println(str1==str2); //==比较地址值是否相等,false System.out.println(str1.equals(str2));…