码迷,mamicode.com
首页 > 编程语言 > 详细

C++技法杂记

时间:2019-08-04 19:22:47      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:++   struct   one   last   杂记   enum   ast   str   继承   

C++ 技法杂技杂记

1. 枚举

1.1 枚举继承(Enum Inheritance)

struct Enum{
    enum{ One = 1, Two, Last };
};

struct EnumDeriv : public Enum{
    enum{Three = Enum::Last,Four,Five};
};

C++技法杂记

标签:++   struct   one   last   杂记   enum   ast   str   继承   

原文地址:https://www.cnblogs.com/xiconxi/p/11299252.html

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