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 | 31 |
Tags
- operator overloading
- member function pointer
- base from member
- c++ basic practice
- std::endl
- virtual inheritance
- virtual function
- std::ostream
- virtual function table
- constructor
- return by reference
- virtual destructor
- this call
- std::cout
- C++
- suffix return type
- diamond inheritance
- vector capacity
- discord bot
- 더 지니어스 양면포커
- vector size
- new&delete
- c++ multi chatting room
- std::vector
- placement new
- pointer to member data
- delete function
- dynamic_cast
- increment operator
- conversion constructor
Archives
- Today
- Total
목록2024/08/05 (2)
I'm FanJae.
[C++] namespace 정리
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. namespace 란?C 언어에서는 동일한 이름의 함수를 2개 이상 만들 수 없다. 이와 달리 C++ 에서는 "namespace"라는 문법을 사용하면, 관련된 코드 (함수, 구조체, 전역 변수 등)을 묶어서 관리 할 수 있다. 서로 다른 이름 공간에서는 동일한 이름을 사용할 수 있다.#include namespace Audio{ void init() { printf("init Audio module\n"); } void reset() { printf("reset Audio module\n"); }}namespace Video{ void init() { printf("init Video module\n"); }}int..
C++/Basic
2024. 8. 5. 23:08
[C++] Visual Studio C++ 언어 표준 설정.
Visual Studio 2022 기준으로 표준은 C++ 14이다.따라서, C++ 17, 20에 새롭게 정의된 Class를 사용시 에러가 발생한다. 1. 해결법 1) 프로젝트->프로젝트 속성 탭을 클릭한다. 2) 구성 속성 -> C/C++ -> 언어 -> C++ 언어 표준의 옵션을 본인이 원하는 버전으로 변경한다. 변경 후 적용 버튼을 누른 뒤 확인을 누르면, 정상적으로 변경이 되었음을 확인할 수 있다. 적용 이후, 오류가 나지 않고, 정상적으로 인식한 것을 확인할 수 있다.
C++/Basic
2024. 8. 5. 22:36