这不起作用,因为std :: type_index没有constexpr ctor
constexpr std::type_index i = typeID(double);解决方法 在某种程度上,有:
constexpr const std::type_info &i = typeID(double);
您必须记住,typeID返回类型const std :: type_info&,而不是std :: type_index.
总结以上是内存溢出为你收集整理的C 11 constexpr和typeid(类型)全部内容,希望文章能够帮你解决C 11 constexpr和typeid(类型)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)