摘要:
#include "pch.h" #include using namespace std; class A { public: A(int x, int y) { this->x = x; this->y = y; } void printA() { cout << x << " + " << y <<... 阅读全文
摘要:
1.类模板的定义 2.类模板的使用 3.类模板做函数参数 4.类模板派生普通类 5.类模板派生类模板 阅读全文