获得关于 错误信息 说明信息

IDE: VS2005

 

以下代码 报error C4430

1.cpp里有以下代码:

 

fun(int a) 
{
    printf("abc");
}

 

报下面的错误:

1.cpp(15) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int

 

 

若要获得关于特定错误信息的帮助,请在“输出”窗口中的错误号上单击鼠标并按 F1,然后

在msdn 里“索引”的“查找”框中键入错误号

 

如 C4430 得到以下信息

错误消息

缺少类型说明符 — 假定为 int。注意:C++ 不支持默认 int

 

对 Visual C++ 2005 执行的编译器一致性工作可能导致此错误:所有声明现在必须显式指定类型;不再假定为 int。有关更多信息,请参见 Breaking Changes in the Visual C++ 2005 Compiler。

C4430 始终作为错误发出。可以使用 #pragma warning 或 /wd 关闭此警告;有关更多信息,请参见 warning 或 /w、/Wn、/WX、/Wall、/wln、/wdn、/wen、/won(警告等级)。

示例

下面的示例生成 C4430。

   
// C4430.cpp
// compile with: /c
struct CMyClass {
   CUndeclared m_myClass;  // C4430
   int m_myClass;  // OK
};

typedef struct {
   POINT();   // C4430
   // try the following line instead
   // int POINT();
   unsigned x;
   unsigned y;
} POINT;

  

 

你可能感兴趣的:(获得关于 错误信息 说明信息)