9.1 산술 연산자 오버로딩OverLoading 하기
#include using namespace std; class Cents { private: int m_cents; public: Cents(int cents = 0) { m_cents = cents; } int getCents() const { return m_cents; } int& getCents() { return m_cents; } }; void add(const Cents &c1, const Cents &c2, Cents &c_out) { c_out.getCents() = c1.getCents() + c2.getCents(); } int main() { Cents cents1(6); Cents cents2(8); Cents sum; add(cents1, cents2, sum); cout
언어/C++
2020. 4. 24. 19:39
8.14 클래스 안에 포함된 자료형 nested types
nested types #include using namespace std; class Fruit { public: enum FruitType { APPLE, BANANA, CHERRY, }; private: FruitType m_type; public: Fruit(FruitType type) : m_type(type) {} FruitType getType() { return m_type; } }; int main() { Fruit apple(Fruit::APPLE); if(apple.getType() == Fruit::APPLE) { cout
언어/C++
2020. 4. 24. 19:20
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 3차원 배열
- 회전리스트
- 배열
- 시간복잡도
- 자료구조
- 강의
- 비트필드
- codeit
- call by value
- 공용체
- 종류
- timecomplexity
- 1차원 배열
- 형승격
- 포인터
- call by reference
- Algorithm
- 간접 지정
- 직접 지정
- 재귀함수
- inflearn
- 프로그래밍
- 구조체
- 공간복잡도
- 2차원 배열
- 파이썬
- 다차원 배열
- 알고리즘
- 공부
- C
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함