程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++之多繼承解析

C++之多繼承解析

編輯:關於C++
#include 

using namespace std ; 

class AA
{
	public:
		int a ; 
		void Say_hello(void)	
		{
			cout << "this is AA " << endl ; 	
		}
};


class BB
{
	public:
		int b ; 
		void Say_hello(void)
		{
			cout << "this is BB " << endl ; 
		}
};

//多繼承 
class CC  : public AA , public BB
{
	public:
		int d ; 
		void Say_hello(void)
		{
			cout << "this is CC " << endl ; 
		}
};


int main(void)
{
	CC  aa ; 
	aa.Say_hello();
	aa.AA::Say_hello();
	aa.BB::Say_hello();
	aa.CC::Say_hello();

	cout << "Size AA : " << sizeof(AA) << endl ; 
	cout << "Size BB : " << sizeof(BB) << endl ; 
	cout << "Size CC : " << sizeof(CC) << endl ; 
	
}

運行結果:

\

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved