劲火星空
仰望星空
全部博文(44)
2016年(22)
2015年(22)
xikacat
Bsolar
Etrock
bbslhb
sunzhilo
oneness0
panghaif
llimprov
yhs0717
发布时间:2016-03-31 10:14:42
多继承中的虚函数重载点击(此处)折叠或打开#include <iostream>#include <string.h>using namespace std;class Person{protected: char *name;public:.........【阅读全文】
发布时间:2016-03-31 10:10:52
有了虚函数,就可以实现通过基类的指针或者基类的引用调用到派生类的函数,这个太强大了。也就是把通过基类的指针或者引用调用虚函数的代码写在那里不动,将来你新写了派生类并实现了虚函数,那些本来的代码就能调用到你新写的虚函数。点击(此处)折叠或打开#include <iostream>.........【阅读全文】
发布时间:2016-03-28 21:39:27
一、单目运算符重载#include <iostream>using namespace std; class CPoint{private: int x, y;public: CPoint(int _x=0, int _y=0):x(_x).........【阅读全文】
发布时间:2016-03-13 14:07:06
//文件写入#include #include #include using namespace std; int main(void){ ofstream outfile("f:\\f.txt",ios::out); if(!ou.........【阅读全文】
发布时间:2016-03-13 14:05:38
点击(此处)折叠或打开//文件写入#include <iostream>#include <iomanip>#include <fstream>using namespace std; int main(void){ ofstream outfile.........【阅读全文】
登录 注册