首页 > 其他 > 详细

宏函数定义继承类

时间:2014-04-28 00:08:27      阅读:469      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
//: ORDER.CPP -- Order of constructor calls 
// with inheritance
#include <iostream.h>

#define inherit(derived, base) class derived : public base { public:   derived() { cout << #derived << endl; } };

class X {};
inherit(A, X)
inherit(B, A)
inherit(C, B)

main() { C c; }
bubuko.com,布布扣

输出结果:

A
B
C

 

宏函数定义继承类,布布扣,bubuko.com

宏函数定义继承类

原文:http://www.cnblogs.com/findumars/p/3695231.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!