l null null์ ์ด๋ ํ ๊ฐ์ผ๋ก๋ ์ด๊ธฐํ ๋์ง ์๋ ๊ฐ์ ๋๋ค. ํ ๋ฉ๋ชจ๋ฆฌ์ ์์ญ์ด ์กด์ฌํ์ง๋ ์์ฃ . ๋ง์ฝ String str = null; ์ด๋ฐ ์์ผ๋ก ์ ์ธํด์ค๋ค๋ฉด ๋์ค์ ์ฌ์ฉํ๊ฒ ๋ค ์๊ณ ํ ์ํ์ด์ง ์กด์ฌํ๋ ๊ฒ์ ์๋๋๋ค. ์ฌ์ง์ฒ๋ผ ํด์ง๊ฝ๋ ์๋ ์ํ์ด์ฃ . l "" ""์ ํ๋์ String์ ๋๋ค. "str", "strstrstrstr"์ ๊ฐ์ ๊ฒ์ ๋๋ค. ๋ฐ๋ผ์ ๋ฉ๋ชจ๋ฆฌ์ ํ ๋น๋์ด ์๋ ์ํ์ ๋๋ค. ์ ์ฌ์ง์์ 0์ด ""์ ๊ฐ๋ค๊ณ ์๊ฐํ์๋ฉด ๋ฉ๋๋ค. null ๊ณผ ๋ค๋ฅด๊ฒ ํด์ง๊ฝ์ ์์ต๋๋ค. l ์์ฝ null : ์ฌ์ฉํ๊ฒ ๋ค ์๊ณ ํ ์ํ "" : ์ด๋ฏธ ์ฌ์ฉํ ์ํ ์ฝ์ด์ฃผ์ ์ ๊ฐ์ฌํฉ๋๋ค. ์ง๋ฌธ์ ์ธ์ ๋ ํ์ํฉ๋๋ค. "๋ ๋ฐ๋์ ๋ฐฑ์๋ ์์ด ๋ ๊ฑฐ์ผ"
์ค๋์ ์๋ฐ์์ ๋ง์ด ์ฌ์ฉํ๋ ํจ์์ธ isEmpty์ ๋ํด ์์๋ณด๊ฒ ์ต๋๋ค. isEmpty๋ String ํด๋์ค์ ๋ฉ์๋์ด๋ฏ๋ก ๋จ๋ ์ผ๋ก ์ฌ์ฉํ ์ ์์ต๋๋ค. ๊ทธ๋ฆฌ๊ณ isEmpty๋ null์ ์ฒดํฌํด์ฃผ์ง ์์ต๋๋ค. l ์์ package com.ex01; public class test01 { public static void main(String[] args) { String str = "test"; String str2 = "";//๊ณต๋ฐฑ ์์ String str3 = " ";//๊ณต๋ฐฑ ์์ System.out.println(str.isEmpty());//=>false System.out.println(str2.isEmpty());//=>true System.out.println(str3.isEmpty())..