일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html charset
- relative path
- #1차원배열
- html multimedia
- #3차원배열
- #bubbleSort
- mac terminal command
- html id
- #android activity
- #C++ 연산자함수오버로딩
- #JAVASCRIPT
- #CallByAddress
- #2차원배열
- 하이퍼레저패브릭
- git flow
- #다차원포인터
- hyperledger transaction
- html object
- html youtube
- html5 new tag
- #C++ has~a
- 토큰경제
- #binary
- #자바상속#자바이즈어#is~a
- html code
- html video
- html plug-in
- #성적관리프로그램
- docker example
- border-box
- Today
- Total
목록C++ (24)
A sentimental robot
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 #include #include using namespace std; void main() { char bu[30]; ofstream fon; //파일 출력 객체 fon.open("a.txt"); // 파일 오픈 fon bu; // 파일에 있는 값을 bu에 읽어오기 fin.close(); cout
템플릿 기능은 같지만 데이터 타입이 다를경우 하나로 여러개를 만족시켜주는 형태 > 다형성 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 #include using namespace std; template void change(T &a, T&b) { T temp; temp = a; a = b; b = temp; } int main() { int a = 3, b = 4; float c = 3.4f, d = 4.7f; char e = 'A', f = 'B'; change(a, b); cout
순수가상함수 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..
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 #include using namespace std; class A { public: void f1() { cout
상속 코드의 재활용, 유지보수 부모클래스 : 자식의 공통된 사항을 가지고 있다. 자식클래스 : 자식만의 고유한 기능을 추가만 하면 된다. 상속방식 1) private 상속 : has~a >> 잘 안쓰임 부모의 멤버가 모두 자식으로 상속되었을 때 private으로 바뀐다. 2) protected 상속 : has~a >> 잘 안쓰임 부모의 public 멤버가 protected로 바뀌어서 상속 3) public 상속 : is~a 있는 그대로 상속이 된다. ex1) private 상속 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..
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 #include using namespace std; class A { public: void dispA() { cout
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 116 117 118 119 120 121 122 123 124 125 126 12..
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 #include #include using namespace std; class A { int a; public:A(int num = 0) :a(num) { } friend ostream& operator (istream &in, A&aa); }; ostream& operator