1、new int[]
new int[] 是创建一个int型数组,数组大小是在[]中指定,例如:
int * p = new int[3]; //申请一个动态整型数组,数组的长度为[]中的值
2、new int()
new int()是创建一个int型数,并且用()括号中的数据进行初始化,例如:
int *p = new int(10); // p指向一个值为10的int数。
注:在这里我想说一下,有些书上写的是为指针开辟10个字节的内存单元,这是错误的,自己一定要验证一下是否正确。
3、示例
1
2
3
4
5
6
7
8
9
10
|
#include <cstring>
int
main()
{
using
namespace
std;
int
*p =
new
int
( 10 );
cout << *p << endl;
return
0;
}
|
执行结果为10。
源地址:http://blog.csdn.net/guoqianqian5812/article/details/50344041