C++ 属性: maybe_unused (C++17 起)

来自cppreference.com
< cpp‎ | language‎ | attributes

抑制针对未使用实体的警告。

语法

[[maybe_unused]]

解释

此属性可出现在下列实体的声明中:

对于声明为 [[maybe_unused]] 的实体,如果没有使用这些实体或它们的结构化绑定,那么编译器针对未使用实体发布的警告会被抑制。

示例

#include <cassert>
 
[[maybe_unused]] void f([[maybe_unused]] bool thing1,
                        [[maybe_unused]] bool thing2)
{
    [[maybe_unused]] bool b = thing1 && thing2;
    assert(b); // 发行模式中,assert 在编译中被去掉,因而未使用 b
               // 无警告`,因为它被声明为 [[maybe_unused]]
} // 未使用参数 thing1 与 thing2,无警告
 
int main() {}

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 出版时的行为 正确行为
CWG 2360 C++17 不能应用 [[maybe_unused]] 到结构化绑定 可以应用

参阅