摘要:
#include "stdafx.h"#include "iostream" using namespace std; class MyClass{ int _i; friend void Increment(MyClass& f);public: const int NUM; //常量值的定义:N 阅读全文
摘要:
#include "stdafx.h"#include "iostream" using namespace std; class Base1{public: virtual void show() = 0;};class Base2{protected: char* _p; //char* s的地 阅读全文