일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 더 지니어스 양면포커
- base from member
- increment operator
- new&delete
- c++ basic practice
- vector size
- placement new
- member function pointer
- suffix return type
- operator overloading
- std::ostream
- pointer to member data
- diamond inheritance
- virtual function
- constructor
- discord bot
- std::endl
- virtual function table
- return by reference
- virtual destructor
- std::cout
- delete function
- this call
- c++ multi chatting room
- dynamic_cast
- conversion constructor
- virtual inheritance
- std::vector
- C++
- vector capacity
- Today
- Total
목록2024/08/09 (2)
I'm FanJae.
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. Reference(참조) 1-1. Reference의 정의#include int main(){ int n = 10; int* p = &n; int& r = n; r = 20; std::cout - C 언어에서는 변수의 주소값을 담을 수 있는 Pointer라는 것이 있다.- C++에서는 포인터와 유사한 형태의 Reference라는 기능이 존재한다. (유사한 것이 결코 같은게 아니다.)- 포인터 변수를 선언하는 것처럼 다음과 같이 선언이 가능하다.int &r = n; - Reference란, 이미 존재하는 변수(메모리)에 대한 추가적인 별칭을 부여하는 문법이다.- 기존 포..
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. - C++에서 새롭게 추가된 for문이 존재한다.1. range for 1-1. std::size() // C++ 17일반적으로, for를 사용할 때, 배열의 크기가 바뀌면, for 안의 크기도 바뀌어야 했다.그때 C 언어에서 가장 많이 사용한 방식이 아래 방식이다.#include int main(void){ int x[10] = {1,2,3,4,5,6,7,8,9,10}; for (int i = 0; i C++에서는 std::size 라는 것이 존재한다.#include int main(void){ int x[10] = {1,2,3,4,5,6,7,8,9,10}; for (int i = 0..