摘要: 1. 要编译的测试代码: int a; int b = 3; int main(void) { if (3) a = 4; else b = 5; } 2. 词法分析 词法分析将c源代码解析成一个个的token。 关键的,将if两个字符解析成一个if token,后续语法分析的输入就从两个字符减少为 阅读全文
posted @ 2021-11-23 13:24 Just_4_fun 阅读(991) 评论(0) 推荐(0) 编辑