ls命令基础使用 · 命令形式如下: ls [-a -l -h] [路径] · 如果直接使用ls命令,不添加选项和参数,就代表以平铺的形式列出当前工作目录下的内容,如下:
在C++中如果想要读写文件,需要引入一个库fstream,代表的是file stream,文件流的意思: #include <fstream> 接下来定义一个简单的写文件的函数: void write_file() { ofstream ofs; // ofstream代表的是out fil
多态的概念: 首先,我们先来看一个静态的多态的例子: class Point { public: int x; int y; Point() : x(0), y(0) {} Point(int _x, int _y) : x(_x), y(_y) {} &nb
类的继承: 通过继承来减少代码量与提高复用性,一个基本例子: class Father { public: int age; string name; Father(): age(30),name("Father") {} } class Son: public
这个东西不太重要,有个印象就行。 首先需要明确的是,在类中声明成员或方法的时候,如果没写访问权限,那就默认是private的: class Student { int age; // private的成员 public: int id; // public的成员 } 使用friend