constexpr inline bool is_defined() noexcept{ return false;}constexpr inline bool is_defined(int) noexcept{ return true;}
然后使用它像:
voID f() noexcept(is_defined(NDEBUG)){ // blah,blah}
标准库或语言是否已经为此提供了便利,以便我不会重新发明轮子?
解决方法 如果您只对NDEBUG感兴趣,这相当于测试assert()是否评估它的参数.在这种情况下,您可以使用:voID f() noexcept(noexcept(assert((throw true,true)))){ // ...}
当然,这不一定是改进:)
总结以上是内存溢出为你收集整理的c 11 – is_defined constexpr函数全部内容,希望文章能够帮你解决c 11 – is_defined constexpr函数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)