반응형
new
1.소스
#include <iostream> using namespace std; int main( int argc , char ** argv ) { int * pt = new int; *pt = 200; cout << "int value = " << *pt << ": localtion = " << pt << endl; return 0; }
결과
g++ -o use_new use_new.cpp hacker@ubuntu:~/cpp$ hacker@ubuntu:~/cpp$ ./use_new int value = 200: localtion = 0x1f22c20
반응형
'C++ > 0x07-stl' 카테고리의 다른 글
using the delete operator (0) | 2016.07.29 |
---|---|
using new with a structure (0) | 2016.07.29 |
vector 값 복사 (0) | 2016.07.12 |
erase (0) | 2016.07.12 |
find & erase (0) | 2016.07.12 |