Programming/C++
c++ 클래스 생성자
Oth
2018. 5. 30. 16:11
//초기화 리스트
Foo(int num): bar(num) {};
//함수에서 초기화
Foo(int num)
{
bar = num;
}