gpt4 book ai didi

c++ - 在成员为 const 和列表初始化的情况下,对非静态成员的使用无效?

转载 作者:行者123 更新时间:2023-11-28 00:04:44 25 4
gpt4 key购买 nike

我有这个标题:

class A{
const int x;
typedef std::array<MyClass, x> ARRAY; // Cannot use x here?

};

在实现文件中:

A::A() : x(10) {}

但是我得到 typedef 行的编译器错误:

invalid use of non-static data member A::x

我以为 x 只需要是 const 就可以用于数组大小调整?我真的很想避免静电。

最佳答案

为了将 x 用作非类型模板参数,它必须是一个核心常量表达式 - 基本上它必须在编译时可计算。一个简单的 const 不是充分的标准,const 只是意味着它在未来不可修改 - 这并不意味着它在编译时是已知量。

这里有一个边缘情况可能会引起一些混淆,因为在这种情况下 const 积分是核心常量表达式:

const int x = 10;
std::array<int, x> arr; // ok

没有理由要避免static。你会想做这样的事情:

struct A {
static constexpr int x = 10;
typedef std::array<MyClass, x> ARRAY;
};

关于c++ - 在成员为 const 和列表初始化的情况下,对非静态成员的使用无效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36408590/

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