Advertencia del compilador (nivel 2) C4345
Actualización: noviembre 2007
Mensaje de error
cambio de comportamiento: un objeto de tipo POD construido con un inicializador del formulario () será inicializado de forma predeterminada
behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized
Esta advertencia informa sobre un cambio en el comportamiento del compilador de Visual C++ incluido en Visual Studio .NET al inicializar un objeto POD con (); el compilador inicializará el objeto de forma predeterminada.
Para obtener más información, vea Resumen de cambios importantes en tiempo de compilación.
El ejemplo siguiente genera el error C4345:
// C4345.cpp
// compile with: /W2
#include <stdio.h>
struct S* gpS;
struct S
{
// this class has no user-defined default ctor
void *operator new (size_t size, void*p, int i)
{
((S*)p)->i = i; // ordinarily, should not initialize
// memory contents inside placement new
return p;
}
int i;
};
int main()
{
S s;
// Visual C++ .NET 2003 will default-initialize pS->i
// by assigning the value 0 to pS->i.
S *pS2 = new (&s, 10) S(); // C4345
// try the following line instead
// S *pS2 = new (&s, 10) S; // not zero initialized
printf("%d\n", pS2->i);
}