c++ 关于new的问题

int *p=new int;赋值时除了p[0]=1;这种写法,还有其他写法吗??
2025-01-03 18:18:58
推荐回答(1个)
回答1:

可以使用*p=1;这种写法。