c语言实现c++的继承和多态
繼承和多態(tài)是C++的特性,它C語言沒有這個特性。
C++的三大特性:繼承,多態(tài),封裝。
繼承:分為公有(public)繼承,私有(private)繼承,保護(protected)繼承。
用struct來模擬實現(xiàn),因為struct在C和C++中都能可以使用,在C中稱為結構體在C++中稱為類,但他們的原理是一樣的,又因為struct的限定符默認是公有的,在C中沒有限定符這個概念,所以用c語言只能實現(xiàn)成公有繼承
#include<iostream>
#include<stdio.h>
using namespace std;
//
//實現(xiàn)繼承
typedef void(*ss)();
struct A
{
ss s;
int a;
};
//struct B
//{
// struct A _a ;
// int b;
//};
//void fun()
//{
// printf("father is ss");
//}
//int main()
//{
// struct A _a;
// struct B _b;
// _b._a.a=1;
// _b._a.s=fun;
// _b.b=2;
// printf("child->father:%d",_b._a.a);
// _b._a.s();
// system("pause");
// return 0;
//}
//實現(xiàn)多態(tài)
typedef void(*SS)();
struct A
{
SS s;
int d;
};
struct B
{
struct A _a;
};
void printfc()
{
printf("father....\n");
}
void printfd()
{
printf("child...\n");
}
int main()
{
struct A a;
struct B b;
struct A* a1;
b._a.d=1;
a.s=printfc;
b._a.s=printfd;
a1=&a;
a1->s();
a1=(struct A *)&b;
a1->s();
system("pause");
}
總結
以上是生活随笔為你收集整理的c语言实现c++的继承和多态的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 排序大全
- 下一篇: c++实现单例类(懒汉与饿汉)