C对简单的
POD typedef进行初值化?
假设
typedef T* Ptr;
不
Ptr()
做值初始化并保证等于(T *)0?
例如
Ptr p = Ptr(); return Ptr();
解决方法
它是.对于类型T,T()值初始化类型T的“对象”,并产生一个右值表达式.
int a = int(); assert(a == 0);
荚级相同:
struct A { int a; }; assert(A().a == 0);
struct A { ~A() { } int a; }; assert(A().a == 0);
因为你不能做A a()(而是创建一个函数声明),boost有一个类value_initialized
,允许解决这个问题,而C 1x将具有以下的替代语法
int a{};
在标准的干燥的话中,这听起来像
The expression T(),where T is a simple-type-specifier (7.1.5.2) for a non-array complete object type or the (possibly cv-qualified) void type,creates an rvalue of the specified type,which is value-initialized