자바String클래스
-
JAVA 자바 핵심클래스JAVA 2020. 8. 16. 21:42
🎯 자바의 String 클래스, Wrapper 클래스 등 다양한 핵심 클래스를 알아본다. String 클래스 public class StringTest { public static void main(String[] args) { String a = "hello"; String b = "hello"; System.out.println("a==b "+(a==b)); System.out.println("a.equals(b)======= "+(a.equals(b))); String c = new String("hello"); String d = new String("hello"); System.out.println("c==d "+(c==d)); System.out.println("c.equals(d)======..