c – int int(0)in int * pi = new int(0);?

前端之家收集整理的这篇文章主要介绍了c – int int(0)in int * pi = new int(0);?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
int *pi = new int(0);

这里有什么意义0是否表示长度为0的整数数组?

解决方法

它是一个初始化器(constructor参数).新创建的int将具有0的值.
原文链接:https://www.f2er.com/c/112562.html

猜你在找的C&C++相关文章