일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 구조체
- Flutter
- git
- c# 윈폼
- Unity
- 다트 언어
- C언어 포인터
- github
- jupyter
- Houdini
- 깃
- C++
- 도커
- vim
- Algorithm
- c# 추상 클래스
- C# delegate
- 포인터
- gitlab
- c#
- c언어
- c# winform
- Python
- 플러터
- Data Structure
- jupyter lab
- docker
- 유니티
- dart 언어
- HTML
Archives
- Today
- Total
목록c++ dynamic_cast bad_cast (1)
nomad-programmer
[Programming/C++] C++에서의 형 변환 연산
C++에서는 C스타일의 형 변환 연산자를 가리켜 '오래된 C스타일 형 변환 연산자(Old C-style cast operator)'라 부르기도 한다. 이렇듯 C스타일의 형 변환 연산자는 C언어와의 호환성을 위해서 존재할 뿐, C++에서는 새로운 형 변환 연산자와 규칙을 제공하고 있다. #include #pragma warning(disable: 4996) using std::cout; using std::cin; using std::endl; class Car { private: int fuelGauge; public: Car(int fuel) : fuelGauge(fuel) {} void ShowCarState() const { cout
Programming/C++
2021. 2. 8. 02:06