在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
静态变量,指的是一个类中被static修饰的变量,这个变量可以被类中的方法、对象、类名直接修改或访问: class Student { public: char color; static int n_eyes; Student() : color('b') {} };