Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- virtual destructor
- 더 지니어스 양면포커
- new&delete
- c++ basic practice
- placement new
- delete function
- std::ostream
- std::cout
- std::vector
- virtual inheritance
- C++
- this call
- return by reference
- pointer to member data
- base from member
- diamond inheritance
- member function pointer
- dynamic_cast
- vector size
- constructor
- virtual function
- c++ multi chatting room
- discord bot
- conversion constructor
- operator overloading
- vector capacity
- increment operator
- std::endl
- virtual function table
- suffix return type
Archives
- Today
- Total
목록auto (1)
I'm FanJae.
[C++] C++ 에서 새롭게 추가된 Type & Variable
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. C 언어와 다르게 C++ 언어에서는 여러 가지 데이터 타입과 변수가 추가되었다. 1) auto, decltype 1-1) autoint main(){ int x[5] = {1,2,3,4,5}; auto n = x[0]; // n은 int type이 된다. auto a = x; // 배열의 이름은 해당 배열의 첫번째 원소의 주소로 암시적 형변환이 된다. 따라서 a는 (int *) 가 된다. } auto ( C++ 11 )- 변수 선언시, 우변의 표현식을 조사하여 컴파일러가 타입을 결정한다.- 컴파일 할 때 타입을 결정하여, 실행 시 오버헤드는 없다.- 위 예제의 경우는 x[0]이 int ..
C++/Basic
2024. 8. 6. 23:52