parseclass.h
来自「简单的词法分析(parseclass.h)」· C头文件 代码 · 共 18 行
H
18 行
#include <string>
#include <iostream>
#include <fstream>
#include <vector>
#include <utility>
using namespace std;
class Parse
{
public: int ParseNumber(string &a);
//int ParseReg(string &c);
vector<string> *LoadFile(string &b);
int isother(char &p);
int ischar(string &a);
int Is_contrl(string &a);
private: vector<string> *textline;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?