Eat Study Love

먹고 공부하고 사랑하라

C++ 176

Review 3 - Functions and Memory Management in C++

https://eglife.tistory.com/85 Review 2 - Container, Iteration in C++https://eglife.tistory.com/83 Review 1 - Basic Standard Library in C++(Cin/out,file I/O, String)이번엔 C++의 기초 복습이다. 사실 C++이 이름때문에 프로그래밍 언어 중에 제일 끝판왕 격으로 어려운 줄 알았으나, C가eglife.tistory.com기초적인 C++의 Container들이 무엇이 있는지 배웠으니, 이제 그것들을 이용해서 각종 Fucntion을 어떻게 만들고, 그 때마다 Memory 할당은 어떻게 되는지 알아볼 시간! 1. Functions #include using namespace std;i..

Review 1 - Basic Standard Library in C++(Cin/out,file I/O, String)

이번엔 C++의 기초 복습이다. 사실 C++이 이름때문에 프로그래밍 언어 중에 제일 끝판왕 격으로 어려운 줄 알았으나, C가 젤 짜치긴 하다;; ㅎㅎ C 하다가 C++ 넘어오면 C++은 양반이라는 것! 각설하고 C++ 복습으로 얼른 넘어가보자~~~~~~ ㅠㅠ C++은 기본적으로, C와 유사한데, 몇 가지 표현 방식이 다르다.  1. 단순 Print를 할 때의 차이#include int main(void){ int num; std::cout > num; std::cout  C의 printf / scanf 모두 C++에선 가볍게 cin / cout으로 처리해버린다. 저 std:: 같은 건 나중에 using namespace std; 로 생략 가능한데, 일단 초창기니까 유지 cin / cout..

9. Inheritance - Advanced and Applications

https://eglife.tistory.com/52 8. Inheritance - Basics https://eglife.tistory.com/51 7. Copy&Move, Special Members https://eglife.tistory.com/50 6. Out_of_class Definition & Operator Overloading https://eglife.tistory.com/49 5. Classes https://eglife.tistory.com/43 4. Functions and Memory Management https://eg eglife.tistory.com 꾸역 ~ 꾸역 이해했던 저번의 Inheritance 기초과정에 추가로 심화된 부분을 다뤄보자. 마찬가지로 전단계에서 공부했..

7. Copy&Move, Special Members

https://eglife.tistory.com/50 6. Out_of_class Definition & Operator Overloading https://eglife.tistory.com/49 5. Classes https://eglife.tistory.com/43 4. Functions and Memory Management https://eglife.tistory.com/36 3. C++ Standard Library (3) https://eglife.tistory.com/35 2. C++ Standard Library (2) https://eglife.tistory.com/34 1. C eglife.tistory.com 깨달은 게 있다. 뭔가 뇌가 꼬이는 거 같고, 이해가 너무 안 될 때는 일단..

5. Classes

https://eglife.tistory.com/43 4. Functions and Memory Management https://eglife.tistory.com/36 3. C++ Standard Library (3) https://eglife.tistory.com/35 2. C++ Standard Library (2) https://eglife.tistory.com/34 1. C++ Standard Library (1) 아 ~ 이게 무슨 영어, 중국어 배우는 것도 아니고 코딩하나 하 eglife.tistory.com C++에서도 오고야 말았다.. Class! 파이썬때도 살짝 맛 봤었으나 매콤했던 걸로 기억하는데.. OOP를 위해선 어쩔 수 없이 익숙해져야 하는 클라스!! 클래스!! Classes Cl..

4. Functions and Memory Management

https://eglife.tistory.com/36 3. C++ Standard Library (3) https://eglife.tistory.com/35 2. C++ Standard Library (2) https://eglife.tistory.com/34 1. C++ Standard Library (1) 아 ~ 이게 무슨 영어, 중국어 배우는 것도 아니고 코딩하나 하는데도 프로그래밍 언어가 너무 많다;; 이거 eglife.tistory.com 이번 시간엔 어렵고 복잡스러워서 피하고 싶지만.. 중요하기 그지 없는 C++의 Call by Reference에 대해 공부를 해보자. 어렵지만, 한 번만 제대로 개념을 잡아 놓으면 여러모로 편리할 것으로 기대한다. 그 전에 복습 잠깐! - Vector의 경우 ..