去注释程序
摘要:
去注释程序 C/C++中注释有两种形式: 1./* … */ 2.// … 我们要实现的功能就是讲程序中的注释过滤掉。 我们首先采用一种直接的方法进行过滤,就是顺序扫描整个源代码,检测 /*、*/、// 这些标示,以获取程序的注释。// 程序1:顺序扫描#include #include #include #include using namespace std;void read_prog(const string& file, string& prog){ ifstream fin(file.c_str()); if (!fin) { cerr & comm... 阅读全文
posted @ 2013-08-13 14:05 unixfy 阅读(710) 评论(0) 推荐(0) 编辑