String 类匿名对象

字符串常量是String类的匿名对象

String str = "hello";

System.out.println(str.equals("hello"));

System.out.println("hello".equals("str"));

原文地址:https://www.cnblogs.com/123talents/p/7463034.html