일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- #android activity
- docker example
- #3차원배열
- #2차원배열
- #binary
- #JAVASCRIPT
- #성적관리프로그램
- html code
- #bubbleSort
- mac terminal command
- border-box
- html id
- html5 new tag
- html object
- #자바상속#자바이즈어#is~a
- git flow
- relative path
- #1차원배열
- hyperledger transaction
- html video
- 토큰경제
- html charset
- #CallByAddress
- #다차원포인터
- html youtube
- #C++ 연산자함수오버로딩
- html plug-in
- html multimedia
- #C++ has~a
- 하이퍼레저패브릭
Archives
- Today
- Total
A sentimental robot
순수 가상함수 본문
순수가상함수
- virtual void func()=0;
-
바디가 없고 선언만 한다. =0를 붙힌다.
- 순수가상함수를 한개 이상 가지고 있는 클래스는 추상 클래스로, 선언이 불가능하다.
- 오버라이딩 강제성 > 상속받은 자식이 오버라이딩을 꼭 해줘야 한다. ( 안하면 같이 추상클래스화 된다)
- 코드의 확장성+유지보수
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115 |
#include<iostream>
using namespace std;
class Memory {
protected:
int array1[5];
int top;
public:
Memory()
{
top = 0;
}
void push(int n) {
if (top >= 5)
{
cout << "Already full" << endl;
return;
}
array1[top++] = n;
}
virtual void pop() = 0;
};
class Mystack : public Memory {
public:
virtual void pop() {
if (top <= 0)
{
cout << "Empty" << endl;
return;
}
cout << "나온 값 => " << array1[--top] << endl;
}
};
class MyQueue : public Memory {
int front;
int rear;
public:
MyQueue()
{
front = 0;
rear = top;
}
virtual void pop() {
if (top <= 0)
{
cout << "Empty" << endl;
return;
}
cout << "나온 값 => " << array1[front++] << endl;
--top;
--front; }
};
int main() {
Memory *mem;
Mystack ms;
MyQueue mq;
int p;
int s;
int s1;
while (true)
{
cout << "=== 1. Stack 2. Queue === " << endl;
cin >> s;
cout << "----- 1.push 2. pop ----- " << endl;
cin >> s1;
switch (s)
{
case 1:
mem = &ms;
if (s1 == 1) {
cout << "넣을 값 => ";
cin >> p;
mem->push(p);
continue;
}
else if (s1 == 2) {
mem->pop();
continue;
}break;
case 2:
mem = &mq;
if (s1 == 1) {
cout << "넣을 값 => ";
cin >> p;
mem->push(p);
continue;
}
else if (s1 == 2) {
mem->pop();
continue;
}break;
default:
break;
}
}
} |
cs |