gpt4 book ai didi

c++ - 使用寄存器存储类作为类成员变量时出错

转载 作者:太空狗 更新时间:2023-10-29 23:49:00 25 4
gpt4 key购买 nike

#include <iostream>
using namespace std;

class test
{
public:
register int a;
};

int main() {
// your code goes here
test t;
t.a = 10;
return 0;
}

我收到以下错误:

error: storage class specified for 'a'

有什么方法可以使用寄存器存储类作为成员变量吗?

最佳答案

根据 storage duration :

The register specifier is only allowed for objects declared at block scope and in function parameter lists.

所以你不能将它用于类成员变量。

请注意,此说明符已过时:自 C++11 起已弃用,自 C++17 起已完全删除 - 让编译器进行优化。

关于c++ - 使用寄存器存储类作为类成员变量时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48417735/

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