摘要: 简单讲,编译器就是将“高级语言”翻译为“机器语言(低级语言)”的程序。一个现代编译器的主要工作流程:源代码 (source code) → 预处理器 (preprocessor) → 编译器 (compiler) → 汇编程序 (assembler) → 目标代码 (object code) → 链接器 (Linker) → 可执行程序 (executables)Structure of a compiler Compilers bridge source programs in high-level languages with the underlying hardware. A comp 阅读全文
posted @ 2012-06-28 11:18 AlexFan 阅读(610) 评论(0) 推荐(0) 编辑