1
2
3
4
5
|
//從void*
類型隱式轉換爲
int
*
類型
int
*i=
malloc
(
sizeof
(
int
)*5);
|
1
|
int
*i=(
int
*)
malloc
(
sizeof
(
int
)*5);
|
1
2
3
4
5
6
7
|
struct
Student
//聲明瞭一個名爲Student的結構體類型
{
int
num;
char
name[20];
char
sex;
};
Student stud1,stud2;
//定義了兩個結構體變量stud1和stud2,它只包括數據,沒有包括操做
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class
Student
//以class開頭
{
int
num;
char
name[20];
char
sex;
//以上3行是數據成員
void
display()
//這是成員函數
{
cout<<″num:″<<num<<endl;
cout<<″name:″<<name<<endl;
cout<<″sex:″<<sex<<endl;
};
//以上4行是函數中的操做語句
};
Student stud,stud1;
//定義了兩個對象stud和stud1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class
Student
//以class開頭
{
private
:
//聲明私有成員
intnum;
char
name[20];
char
sex;
public
:
//聲明公共成員
void
display()
{
cout<<″num:″<<num<<endl;
cout<<″name:″<<name<<endl;
cout<<″sex:″<<sex<<endl;
}
};
Student stud1,stud2;
//定義了兩個對象stud1和stud2
|
1
2
3
4
5
6
7
8
|
class
類名
{
private
:
//私有的數據和成員函數;
public
:
//公用的數據和成員函數;
};
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class
Student{
//聲明類類型
public
:
//先聲明公用部分
void
display(){
cout<<″num:″<<num<<endl;
cout<<″name:″<<name<<endl;
cout<<″sex:″<<sex<<endl;
}
private
:
//後聲明私有部分
int
num;
char
name[20];
char
sex;
}stud1,stud2;
//定義了兩個Student類的對象
|
1
2
3
4
5
6
7
|
class
//無類名
{
private
:
//聲明如下部分爲私有的
//...
public
:
//聲明如下部分爲公用的
//...
}stud1,stud2;
//定義了兩個無類名的類對象
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
structStudent{
//用關鍵字struct來聲明一個類類型
private
:
//聲明如下部分爲私有的
int
num;
//如下3行爲數據成員
char
name[20];
char
sex;
public
:
//聲明如下部分爲公用的
void
display(){
//成員函數
cout<<″num:″<<num<<endl;
cout<<″name:″<<name<<endl;
cout<<″sex:″<<sex<<endl;
}
};
Student stud1,stud2;
//定義了兩個Student類的對象
|
asm
|
do
|
if
|
return
|
typedef
|
auto
|
double
|
inline
|
short
|
typeid
|
bool
|
dynamic_cast
|
int
|
signed
|
typename
|
break
|
else
|
long
|
sizeof
|
union
|
case
|
enum
|
mutable
|
static
|
unsigned
|
catch
|
explicit
|
namespace
|
static_cast
|
using
|
char
|
export
|
new
|
struct
|
virtual
|
class
|
extern
|
operator
|
switch
|
void
|
const
|
false
|
private
|
template
|
volatile
|
const_cast
|
float
|
protected
|
this
|
wchar_t
|
continue
|
for
|
public
|
throw
|
while
|
default
|
friend
|
register
|
true
|
|
delete
|
goto
|
reinterpret_cast
|
try
|
Unix: | C, cc, cxx, c |
GNU C++: | C, cc, cxx, cpp, c++ |
Digital Mars: | cpp, cxx |
Borland: | C++ cpp |
Watcom: | cpp |
Microsoft Visual C++: | cpp, cxx, cc |
Metrowerks CodeWarrior: | cpp, cp, cc, cxx, c++ |
英文
|
參考譯文
|
---|---|
Ambiguous operators need parentheses
|
模棱兩可的操做符須要括號
|
Ambiguous symbol ''xxx''
|
不明確的符號
|
Argument list syntax error
|
參數表語法錯誤
|
Array bounds missing
|
數組界限符丟失
|
Array size toolarge
|
數組尺寸太大
|
Bad character in paramenters
|
參數中有不適當的字符
|
Bad file name format in include directive
|
包含命令中文件名格式不正確
|
Bad ifdef directive synatax
|
編譯預處理ifdef有語法錯
|
Bad undef directive syntax
|
編譯預處理undef有語法錯
|
Bit field too large
|
位字段太長
|
Call of non-function
|
調用未定義的函數
|
Call to function with no prototype
|
調用函數時沒有函數的說明
|
Cannot modify a const object
|
不容許修改常量對象
|
Case outside of switch
|
漏掉了case 語句
|
Case syntax error
|
Case 語法錯誤
|
Code has no effect
|
代碼不可能被執行到
|
Compound statement missing{
|
分程序漏掉"{"
|
Conflicting type modifiers
|
互相沖突的類型說明符設置
|
Constant expression required
|
須要常量表達式
|
Constant out of range in comparison
|
在比較中常量超出範圍
|
Conversion may lose significant digits
|
轉換時會丟失數值的精度
|
Conversion of near pointer not allowed
|
不容許轉換近指針
|
Could not find file ''xxx''
|
找不到XXX文件
|
Declaration missing ;
|
聲明中缺乏";"
|
Declaration syntax error
|
聲明中出現語法錯誤
|
Default outside of switch
|
Default 出如今switch語句以外
|
Define directive needs an identifier
|
定義編譯預處理須要標識符
|
Division by zero
|
用零做除數
|
Do statement must have while
|
Do-while語句中缺乏while部分
|
Enum syntax error
|
枚舉類型語法錯誤
|
Enumeration constant syntax error
|
枚舉常數語法錯誤
|
Error directive :xxx
|
錯誤的編譯預處理命令
|
Error writing output file
|
寫輸出文件錯誤
|
Expression syntax error
|
表達式語法錯誤
|
Extra parameter in call
|
調用時出現多餘錯誤
|
File name too long
|
文件名太長
|
Function call missing
|
函數調用缺乏右括號
|
Fuction definition out of place
|
函數定義位置錯誤
|
Fuction should return a value
|
函數必需返回一個值
|
Goto statement missing label
|
Goto語句沒有標號
|
Hexadecimal or octal constant too large
|
16進制或8進制常數太大
|
Illegal character ''x''
|
非法字符x
|
Illegal initialization
|
非法的初始化
|
Illegal octal digit
|
非法的8進制數字
|
Illegal pointer subtraction
|
非法的指針相減
|
Illegal structure operation
|
非法的結構體操做
|
Illegal use of floating point
|
非法的浮點運算
|
Illegal use of pointer
|
指針使用非法
|
Improper use of a typedefsymbol
|
類型定義符號使用不恰當
|
In-line assembly not allowed
|
不容許使用行間彙編
|
Incompatible storage class
|
存儲類別不相容
|
Incompatible type conversion
|
不相容的類型轉換
|
Incorrect number format
|
錯誤的數據格式
|
Incorrect use of default
|
Default使用不當
|
Invalid indirection
|
無效的間接運算
|
Invalid pointer addition
|
指針相加無效
|
Irreducible expression tree
|
沒法執行的表達式運算
|
Lvalue required
|
須要邏輯值0或非0值
|
Macro argument syntax error
|
宏參數語法錯誤
|
Macro expansion too long
|
宏的擴展之後太長
|
Mismatched number of parameters in definition
|
定義中參數個數不匹配
|
Misplaced break
|
此處不該出現break語句
|
Misplaced continue
|
此處不該出現continue語句
|
Misplaced decimal point
|
此處不該出現小數點
|
Misplaced elif directive
|
不該編譯預處理elif
|
Misplaced else
|
此處不該出現else
|
Misplaced else directive
|
此處不該出現編譯預處理else
|
Misplaced endif directive
|
此處不該出現編譯預處理endif
|
Must be addressable
|
必須是能夠編址的
|
Must take address of memory location
|
必須存儲定位的地址
|
No declaration for function ''xxx''
|
沒有函數xxx的說明
|
No stack
|
缺乏堆棧
|
No type information/沒有類型信息
|
缺乏堆棧
|
Non-portable pointer assignment
|
不可移動的指針(地址常數)賦值
|
Non-portable pointer comparison
|
不可移動的指針(地址常數)比較
|
Non-portable pointer conversion
|
不可移動的指針(地址常數)轉換
|
Not a valid expression format type
|
不合法的表達式格式
|
Not an allowed type
|
不容許使用的類型
|
Numeric constant too large
|
數值
常太大
|
Out of memory
|
內存不夠用
|
Parameter ''xxx'' is never used
|
能數xxx沒有用到
|
Pointer required on left side of ->
|
符號->的左邊必須是指針
|
Possible use of ''xxx'' before definition
|
在定義以前就使用了xxx(警告)
|
Possibly incorrect assignment
|
賦值可能不正確
|
Redeclaration of ''xxx''
|
重複定義了xxx
|
Redefinition of ''xxx'' is not identical
|
xxx的兩次定義不一致
|
Register allocation failure
|
寄存器定址失敗
|
Repeat count needs an lvalue
|
重複計數須要邏輯值
|
Size of structure or array not known
|
結構體或數給大小不肯定
|
Statement missing ;
|
語句後缺乏";"
|
Structure or union syntax error
|
結構體或聯合體語法錯誤
|
Structure size too large
|
結構體尺寸太大
|
Sub scripting missing ]
|
下標缺乏右方括號
|
Superfluous & with function or array
|
函數或數組中有多餘的"&"
|
Suspicious pointer conversion
|
可疑的指針轉換
|
Symbol limit exceeded
|
符號超限
|
Too few parameters in call
|
函數調用時的實參少於函數的參數不
|
Too many default cases
|
Default太多(switch語句中一個)
|
Too many error or warning messages
|
英文
|
參考譯文
|
---|---|
Too many type in declaration
|
說明中類型太多
|
Too much auto memory in function
|
函數用到的局部存儲太多
|
Too much global data defined in file
|
文件中全局數據太多
|
Two consecutive dots
|
兩個連續的句點
|
Type mismatch in parameter xxx
|
參數xxx類型不匹配
|
Type mismatch in redeclaration of ''xxx''
|
xxx重定義的類型不匹配
|
Unable to create output file ''xxx''
|
沒法創建輸出文件xxx
|
Unable to open include file ''xxx''
|
沒法打開被包含的文件xxx
|
Unable to open input file ''xxx''
|
沒法打開輸入文件xxx
|
Undefined label ''xxx''
|
沒有定義的標號xxx
|
Undefined structure ''xxx''
|
沒有定義的結構xxx
|
Undefined symbol ''xxx''
|
沒有定義的符號xxx
|
Unexpected end of file in comment started on line xxx
|
從xxx行開始的註解還沒有結束文件不能結束
|
Unexpected end of file in conditional started on line xxx
|
從xxx 開始的條件語句 還沒有結束文件不能結束
|
Unknown assemble instruction
|
未知的彙編結構
|
Unknown option
|
未知的操做
|
Unknown preprocessor directive: ''xxx''
|
不認識的預處理命令xxx
|
Unreachable code
|
無路可達的代碼
|
Unterminated string or character constant
|
字符串缺乏引號
|
User break
|
用戶強行中斷了程序
|
Void functions may not return a value
|
Void類型的函數不該有返回值
|
Wrong number of arguments
|
調用函數的參數數目錯
|
''xxx'' not an argument
|
xxx不是參數
|
''xxx'' not part of structure
|
xxx不是結構體的一部分
|
xxx statement missing (
|
xxx語句缺乏左括號
|
xxx statement missing )
|
xxx語句缺乏右括號
|
xxx statement missing ;
|
xxx缺乏分號
|
xxx'' declared but never used
|
說明了xxx但沒有使用
|
xxx'' is assigned a value which is never used
|
給xxx賦了值但未用過
|
Zero length structure
|