์์ฑ์ผ: 2019.12.13 ์๋ฌธ Functional Programming for Android Developers — Part 2์ ๋ฒ์ญํ ๊ธ์ ๋๋ค. ์ด์ ํํธ์์ Purity, Side effects, Ordering์ ๋ํด ๋ฐฐ์ ๊ณ , ์ด๋ฒ ํํธ์์๋ immutability์ Concurrency์ ๋ํด ์์๋ณด๊ฒ ์ต๋๋ค. Part 1์ ์์ง ์ฝ์ง ์์๋ค๋ฉด, ์ฌ๊ธฐ์์ ํ์ธํ์ธ์. Immutability Immutability๋ ๊ฐ์ด ํ ๋ฒ ์์ฑ๋๋ฉด ์ ๋ ๋ฐ๋ ์ ์๋ค๋ ๊ฐ๋ ์ ๋๋ค. ์๋์ ๊ฐ์ Car ํด๋์ค๊ฐ ์์ต๋๋ค: Java public final class Car { private String name; public Car(final String name) { this.name = name; } pu..