首页 > 代码库 > C++编程技巧(长期更新)

C++编程技巧(长期更新)

1.数组使用

int* p = new int[5](); // 数组新建并全部初始化为0
等价于:
int* p;
p = new int[5]();
int* q = new int[5];   // array elements all have indeterminate value
 

C++编程技巧(长期更新)