我可以实现“静态警告”以在编译时发出警告吗?
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中文网其他相关文章!