null ์ํ ํ์ธnull์ํ๋ก ์์ฑ์ด๋ ํจ์๋ฅผ ์ฐ๋ ค๊ณ ํ๋ฉด null pointer exception์ด ๋ฐ์ํ๋ค.null pointer exception : null์ธ ๊ฐ์ฒด๋ฅผ ์ฐธ์กฐํ๋ฉด ๋ฐ์ํ๋ ์ค๋ฅ๊ทธ๋์ nullable ๋ณ์๋ฅผ ์ฌ์ฉํ ๋๋ nullํ์ธ ์์ด๋ ์ฝ๋๊ฐ ์ปดํ์ผ ๋์ง ์๋๋ค.var sample: String? = null// if๋ฌธ์ผ๋ก nullalbe ํ์ธif(sample != null) println(sample.toUpperCase())null ์ฒดํฌ๋ฅผ ํ๊ธฐ ์ํด ์ผ์ผํ if๋ฌธ์ผ๋ก ์กฐ๊ฑด์ ํ์ธํ๋ ๋์ ์ฌ๋ฌ๊ฐ์ง ๋ฐฉ๋ฒ์ ์ธ ์ ์๋ค.?. (null safe operator)?: (elvis operator)!!. (non-null assertion operator) ?. (null safe o..