摘要:
1.make命令调用格式: make [-f makefile文件名][选项][宏定义][目标] 2.常用选项有: -Idirname 指定被包含的makefile所在目录 -w 如果make在执行时改变目录,打印当前目录名 -d 打印调试信息 -k 用该选项,即使make程序遇到错误也会继续向下运行 3.makefile文件主要包含了6部分内容 1、显式规则:用于描述系统中模块之间的相互依赖关系,以及产生目标文件所要执行的命令(规则)。 编写规则通用形式: target : dependency [depenency [...] ] command c... 阅读全文
摘要:
#include using namespace std; class Cbase { public: Cbase(int x = 0, int y = 0, int z = 0):a(x), b(y), c(z){}; void display(); void display(int a, int b); void set(); virtual void eval(); static int sint; protected: int c; private: int a; int b; ... 阅读全文