cpp_class_fn - 8BitsCoding/RobotMentor GitHub Wiki
- ์ด๊ธฐํ ๋ฆฌ์คํธ
- ๋ฉค๋ฒ ๋ณ์๋ฅผ ๋์ ์์ด ์ด๊ธฐํ
- ์์๋ ์ฐธ์กฐ ๋ณ์๋ ์ด๊ธฐํ ๊ฐ๋ฅ
// Example class X { const int mNameSize; AnotherClass& mAnother; X(AnotherClass& another) : mNameSize(20), mAnother(another) {} } // ํ๋ฆฐ์๋ฅผ ๋ณด์ class X { const int mNameSize; AnotherClass& mAnother; X(AnotherClass& another){ mNameSize = 20; // Error mAnother = another; // Error } }