标签:标识 view end ati one div center ios open
摘要:编译器生成的错误信息、常见错误
一、编译器生成的错误信息
1. 组成情况
2. 错误性质
二、常见的编译器可以检查出的错误
1. 语法错误(syntax error)
1 #include <iostream> 2 3 //错误:main的参数列表漏掉了 4 int main( 5 { 6 7 //错误:endl后使用了冒号而非分号 8 std::cout << "Read each file." << std::endl: 9 10 //错误:字符串字面常量的两侧漏掉了引号 11 std::cout << Read each file. << std::endl; 12 13 //错误:漏掉了第二个输出运算符 14 std::cout << "Read each file." std::endl; 15 16 //错误:return 语句漏掉了分号 17 return 0 18 }
2. 类型错误(type error)
3. 声明错误(declaration error)
1 #include <iostream> 2 int main() 3 { 4 int v1 = 0, v2 = 0; 5 6 //错误:使用了"v"而非"v1" 7 std::cin >> v >> v2; 8 9 //错误:cout未定义,应该为std::cout 10 cout << v1 + v2 << std::endl; 11 return 0; 12 }
【花絮】
编译器报错截图:
标签:标识 view end ati one div center ios open
原文地址:http://www.cnblogs.com/xzxl/p/7619912.html