8.9 클래스와 const
#include class Something { public: int m_value = 0; void setValue(int value) { m_value = value; } int getValue() { return m_value; } }; int main() { const Something something; something.setValue(3);// error 발생 return 0; } setValue가 하는일은 m_value를 바꾸어주는 일이다. 그렇기 때문에 애초에 잘못된 코드가 되는 것이다. cout
언어/C++
2020. 4. 23. 21:01
8.5 위임 생성자
#include #include using namespace std; class Student { private: intm_id; string m_name; public: Student(const string& name_in) // : m_id(0), m_name(name_in) : Student(0, name_in) {} Student(const int& id_in, const string& name_in) : m_id(id_in), m_name(name_in) {} void print() { cout
언어/C++
2020. 4. 22. 20:09
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 형승격
- timecomplexity
- codeit
- 알고리즘
- 재귀함수
- 시간복잡도
- Algorithm
- 회전리스트
- 다차원 배열
- 3차원 배열
- 종류
- 구조체
- 포인터
- C
- 직접 지정
- 강의
- 프로그래밍
- 공용체
- call by value
- 1차원 배열
- 2차원 배열
- 배열
- inflearn
- 비트필드
- call by reference
- 공간복잡도
- 파이썬
- 간접 지정
- 공부
- 자료구조
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함