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
- pointer to member data
- vector size
- new&delete
- virtual inheritance
- conversion constructor
- return by reference
- vector capacity
- c++ basic practice
- suffix return type
- discord bot
- diamond inheritance
- std::vector
- placement new
- std::ostream
- std::endl
- base from member
- this call
- c++ multi chatting room
- member function pointer
- operator overloading
- dynamic_cast
- virtual function
- 더 지니어스 양면포커
- std::cout
- constructor
- C++
- virtual function table
- delete function
- increment operator
Archives
- Today
- Total
목록static_cast (1)
I'm FanJae.
[C++] Explicit casting
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. C언어 캐스팅의 문제점 - Explicit Casting기본적으로, C언어의 캐스팅 방법과 C++ 언어의 캐스팅 방식에는 약간의 차이가 존재한다.int* p1 = (int *) malloc(sizeof(int)*10);int* p2 = static_cast(malloc(sizeof(int)*10));- C++ 언어로 넘어오면서 아래 방법을 더 권장하기 시작했다. C 방식 캐스팅의 문제점#include #include int main(){ int* p1 = (int *)malloc(sizeof(int)*10); free(p1); int n = 10; double* p2 = &n; *p2..
C++/Basic
2024. 8. 11. 16:19