摘要: 编译器就是将“高级语言”翻译为“机器语言(低级语言)”的程序。一个现代编译器的主要工作流程:源代码 (source code) → 预处理器 (preprocessor:#include) → 编译器 (compiler) → 汇编程序 (assembler) → 目标代码 (object code:.o或.obj文件) → 链接器 (Linker) → 可执行程序 (executables)。 语法错误 类型错误 声明错误:从标准库中访问名字时忘记使用“std::” Code::Blocks IDE: http://www.codeblocks.org/ http://sourc... 阅读全文
posted @ 2012-09-06 17:38 淩風 阅读(1022) 评论(3) 推荐(0) 编辑