좋은 내용들이 있어서 저장
Shape::Shape (const Point center, const int color) { _center = center; _color = color; } Shape::Shape (const Pointer center, const int color) : _center(center) , _color (color) { } |
[링크 : http://ogoons.tistory.com/59]
상식을 깨는(!)
초기화를 위해 constructor에 너무 많은걸 넣지 말라라던가(객체 생성시 오버헤드로 인해 초기화 연산자로?)
등등?
'Programming > C++ STL' 카테고리의 다른 글
cpp thread.... / pthread (0) | 2016.07.11 |
---|---|
객체지향과 if문? (0) | 2016.07.11 |
cpp enum in class (0) | 2016.07.01 |
cpp const (0) | 2016.06.22 |
const 멤버 변수 초기화(member variable initializer) (0) | 2016.06.22 |