嗨即時嘗試定義名爲USHORT的別名。C++編譯器錯誤c4430「C++不支持默認int」
// *****************
// Demonstrates typedef keyword
#include <iostream>
typedef unsigned short int USHORT; // typedef defined
main()
{
USHORT Width = 5;
USHORT Length;
Length = 10;
USHORT Area = Width * Length;
std::cout << "Width:" << Width << "\n";
std::cout << "Length: " << Length << std::endl;
std::cout << "Area: " << Area;
}
我不斷收到一個編譯錯誤說:
錯誤1個錯誤C4430:缺少類型說明符 - 假定爲int。注意:C++不支持默認int C:\用戶\納克維家庭\文件\ justit \ C++ \ W1 \ CP1 \ list0304.cpp 8 1 ConsoleApplication3
感謝
雷
注意:大多數編譯器指出錯誤消息來自哪裏,編譯器指向你的例子? – 2013-03-03 14:07:49
哪一行是錯誤? – Anonymouse 2013-03-03 14:00:41
它說錯誤是在第8行,或者在第8行左右。使用visual studio 2013 express – 2013-03-03 14:02:07