欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++简单的子类继承父类访问父类的成员函数和成员变量

程序员文章站 2022-07-15 21:04:46
...
	#include<iostream>
	using namespace std;
	
	class A
	{
		public:
			A()
			{
				p = 1;
			}
			void Print(int &a)
			{
				++a;
				cout<<"a == "<<a<<endl;
			}
			~A()
			{
				p = 0;
			}
			int p;
	};
	
	class B:public A
	{
		public:
		B()
		{
			a = 1;
			cout<<"p == "<<A::p<<endl;
		}
		~B()
		{
		}
		void Cout()
		{
			Print(a);
			Cout(a);
			cout<<"aaa"<<endl;
		}
		void Cout(int &b)
		{
			++b;
			cout<<"ARGS == "<<b<<endl;
		}
		int a;
	};
	int main()
	{
		B c;
		int a = 1;
		c.Cout();
		return 0;
	}

 

相关标签: c/c++

上一篇: Java泛型(一)

下一篇: 编程题