티스토리 뷰
#include <iostream>
using namespace std;
class A
{
public:
void print()
{
cout << "Hello" << endl;
}
};
int main()
{
A().print();
return 0;
}
// Hello
#include <iostream>
using namespace std;
class A
{
public:
int m_value;
A(const int& input)
: m_value(input)
{
cout << "Constructor" << endl;
}
~A()
{
cout << "Destructor" << endl;
}
void printDouble()
{
cout << m_value * 2 << endl;
}
};
int main()
{
A a(1);
a.printDouble();
A(1).printDouble();
return 0;
}
// Constructor
// 2
// Constructor
// 2
// Destructor
// Destructor
#include <iostream>
using namespace std;
class Cents
{
private:
int m_cents;
public:
Cents(int Cents)
{
m_cents = Cents;
}
int getCents() const
{
return m_cents;
}
};
Cents add(const Cents &c1, const Cents &c2)
{
return Cents(c1.getCents() + c2.getCents());
}
int main()
{
cout << add(Cents(6), Cents(8)).getCents() << endl;
cout << int(6) + int(8) << endl;
return 0;
}
// 14
// 14
'언어 > C++' 카테고리의 다른 글
9.1 산술 연산자 오버로딩OverLoading 하기 (0) | 2020.04.24 |
---|---|
8.14 클래스 안에 포함된 자료형 nested types (0) | 2020.04.24 |
8.12 친구 함수와 클래스 friend (0) | 2020.04.24 |
8.11 정적 멤버 함수 (0) | 2020.04.24 |
8.10 정적 멤버 변수 (0) | 2020.04.23 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 포인터
- 배열
- 공부
- call by value
- 재귀함수
- 강의
- 구조체
- codeit
- 회전리스트
- timecomplexity
- call by reference
- 2차원 배열
- 3차원 배열
- 직접 지정
- 종류
- 파이썬
- C
- 알고리즘
- 형승격
- inflearn
- 공간복잡도
- 공용체
- 프로그래밍
- 자료구조
- 비트필드
- 시간복잡도
- 간접 지정
- 다차원 배열
- Algorithm
- 1차원 배열
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함