C++纯虚函数

抽象基类:

函数调用时,形参不能够是抽象基类,而应该是“指针”或者是"引用"。


// test.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include 
#include 
#include 
using namespace std;

class Base {
	int a;
public:
	virtual void x() const=0;
	virtual int i() const=0;
};

class Derived : public Base{
public:
	virtual void x() const	{
		cout<<"Derived x()"<


你可能感兴趣的:(C/C++,C语言复习要点,c++,class)