enum DrawBoldMode : unsigned{ DBM_NONE = 0,DBM_ITEM = 1<<0,// bold just the nearest line DBM_SECTION = 1<<1,// bold all lines in the same section DBM_liNETYPE = 1<<2,// bold all lines of the same line type DBM_POINTAGE = 1<<3,// bold all lines of the same line type};
如何导出DrawBoldMode的底层类型(即无符号)?
解决方法 它应该可用作std ::底层类型< DrawBoldMode> :: type.但是,我的编译器(GCC 4.6.1)似乎没有实现.我认为用模板实现它是不可能的,但我可能错了.
总结以上是内存溢出为你收集整理的c – 如何获得枚举的基本类型?全部内容,希望文章能够帮你解决c – 如何获得枚举的基本类型?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)