1 package com.Commonly; 2 3 /* 4 字符串常量池:程序当中直接写上的双引号字符串,就在字符串常量池中。 5 6 对于基本类型来说,==是进行数值的比较。 7 对于引用类型来说,==是进行【地址值】的比较。 8 */ 9 public class Used02 { 10 public static void main(String[] args) { 11 String str1 = "abc"; 12 String str2 = "abc"; 13 14 char[] charArray = {'a','b','c'}; 15 String str3 = new String(charArray); 16 17 System.out.println(str1 == str2); // true 18 System.out.println(str1 == str3); // false 19 System.out.println(str2 == str3); // false 20 } 21 }