首页 > 后端开发 > C++ > 我们可以发出像 C 中的'static_assert”这样的编译时警告吗?

我们可以发出像 C 中的'static_assert”这样的编译时警告吗?

Linda Hamilton
发布: 2024-11-02 18:47:02
原创
430 人浏览过

Can We Emit Compile-Time Warnings Like `static_assert` in C  ?

我可以实现“静态警告”以在编译时发出警告吗?

C 11 中的 Static_assert 是识别错误的宝贵工具在编译时。但是,它只生成编译错误,而不生成警告。这个问题探讨了实现发出警告而不是中止编译的“static_warning”的可能性。

使用宏的可能实现

从 Michael E 的评论中汲取灵感,这是一个复杂的评论建议使用宏解决方案:

<code class="cpp">#define DEPRECATE(foo, msg) foo __attribute__((deprecated(msg)))  // GCC
#define DEPRECATE(foo, msg) __declspec(deprecated(msg)) foo  // MSVC</code>
登录后复制

引入了其他宏以方便创建静态警告:

<code class="cpp">#define STATIC_WARNING(cond, msg) ...
#define STATIC_WARNING_TEMPLATE(token, cond, msg) ...</code>
登录后复制

使用示例

这些宏可以在各种范围内使用:

<code class="cpp">STATIC_WARNING(1==2, "Failed with 1 and 2");
STATIC_WARNING(..., "2 and 3 worked");

struct Foo {
  STATIC_WARNING(..., "2 and 3: oops");
};

void func() {
  STATIC_WARNING(..., "Not so good on 3 and 4");
}

template <typename T> struct wrap {
  STATIC_WARNING_TEMPLATE(WRAP_WARNING1, ..., "A template warning");
};</code>
登录后复制

不同编译器中的输出

使用各种编译器编译示例代码会按预期生成警告:

  • GCC 4.6:

    warning: ‘void static_warning1::_(const detail::false_type&)’ is deprecated ...
    登录后复制
  • Visual C 2010:

    warning C4996: 'static_warning1::_': Failed with 1 and 2
    登录后复制
  • Clang 3.1:

    warning: '_' is deprecated: Failed with 1 and 2 ...
    登录后复制

结论

所提供的宏提供了复杂的实现发出警告而不是导致编译错误的 static_warning 功能的方法。它是在编译期间调试和跟踪复杂模板专业化的有用工具。

以上是我们可以发出像 C 中的'static_assert”这样的编译时警告吗?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板