Language/C++ (4) 썸네일형 리스트형 c++ malloc new 차이점? malloc , new 차이점 malloc은 소멸자를 부르지않는다.예제코드는 아래와같다.#include #include class test { public: test(void) { printf("생성자\n"); } ~test(void) { printf("소멸자\n"); } }; int main() { test test1; test* test2 = (test*)malloc(sizeof(test)); test* test3 = new test(); return 0; } c++ thread, mutex, atomic C++ Thread#include // 선언. using namesapce std; void somefunction() { for (int cnt =0; cnt < 1000; ++cnt) cout c++ vector capacity vector capacityvector에 할당되는 메모리크기를 알아보는 방법이다.#include #include using namespace std; int main() { vector v1; for (int cnt = 0; cnt c++ Operator Operator int +#include #include #include using namespace std; class addOperator{ private: int a = 1; public: addOperator() {}; ~addOperator() {}; void getnum() { cout a a + ad.a; return temp; */ this->a += ad.a; return *this; } addOperator operator-(const addOperator &ad) { addOperator temp; temp.a = this->a - ad.a; return temp; } }; int main(int argc, char* argv[]){ addOperator temp1, temp2; (t.. 이전 1 다음