gpt4 book ai didi

c++ - 将函数标记为 const 的非候选对象

转载 作者:行者123 更新时间:2023-12-04 08:11:36 25 4
gpt4 key购买 nike

我有一个不会改变任何东西的函数。类似函数指针数组的函数指针部分不能标记为 const,因为它那时将无法成为该数组的一部分。
我有一个激活的编译器标志,它会警告我一个函数是否是被声明为 const 的潜在候选者。这导致对该功能发出警告。
我使用 g++-10 和 -Wsuggest-attribute=const 等等。
我已经查看了我可能能够使用的属性,但没有一个可以做我想要的。
如何抑制该函数的编译器警告,同时保持其他函数的警告标志处于事件状态?

#include <iostream>
#include <vector>
#include <string>

class C
{
public:
struct S
{
std::string fname;
void (C::*fptr)(void) = nullptr;
};
private:
std::vector<S> vec;
int data;

// can't be const, alters data -> can't update function pointer definition in struct
void f1();
void f2();
// -Wsuggest-attribute=const marks this as candidate
// but doing so will break assignment of vec
void f3();
public:
C() : data{0} {
vec = { {"inc", &C::f1}, {"dec", &C::f2}, {"nop", &C::f3} };
}
virtual ~C() { /* Empty */ }

int getData() const;
void exec(uint8_t opcode);
};

void C::f1() { data++; }
void C::f2() { data--; }
void C::f3() { return; }
int C::getData() const { return data; }
void C::exec(uint8_t opcode) { (this->*vec[opcode].fptr)(); }

int main()
{
C c;
c.exec(0);
std::cout << c.getData() << std::endl;
return 0;
}

我不知道为什么这个例子没有产生警告。但实际代码确实如此。

最佳答案

您可以使用编译指示临时禁用 gcc 和 clang 中的警告:

class C
{
// First save state of warnings
#pragma GCC diagnostic push
// Then ignore warning for this function
#pragma GCC diagnostic ignored "-Wsuggest-attribute=const"
void f3(){}
// Lastly restore warning state
#pragma GCC diagnostic pop
};
这也应该适用于 clang 。还有一个使用 msvc 执行此操作的变体,但我不知道它的存在。

关于c++ - 将函数标记为 const 的非候选对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65922475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com