码迷,mamicode.com
首页 > 其他好文 > 详细

宏函数定义继承类

时间:2014-04-28 00:09:24      阅读:444      评论:0      收藏:0      [点我收藏+]

标签:com   class   blog   http   code   div   img   java   style   javascript   color   

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

宏函数定义继承类

标签:com   class   blog   http   code   div   img   java   style   javascript   color   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!