gpt4 book ai didi

c++ - 是否允许在类构造函数之外初始化非静态成员?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:23:54 24 4
gpt4 key购买 nike

我刚刚看到一个问题,在类定义中初始化了一个类的非静态成员。但是如果我尝试编译以下代码,我会从编译器中得到一个错误。

class MyClass
{
int n = 2;
};

我得到的错误是:

g++ -o ns nonstatic.cpp -Wall -Wextra -pedantic
nonstatic.cpp:3:13: error: ISO C++ forbids initialization of member ‘n’ [-fpermissive]
nonstatic.cpp:3:13: error: making ‘n’ static [-fpermissive]
nonstatic.cpp:3:13: error: ISO C++ forbids in-class initialization of non-const static member ‘n’

我一直认为我必须像这样在构造函数中初始化这样的成员:

class MyClass
{
public:
MyClass ( void ) : n(2) {}
private:
int n;
};

或者用 n 在构造函数体内初始化。所以我的问题是:什么时候允许在类构造函数的上下文之外初始化非静态成员?

亲切的问候,

最佳答案

when is one allowed to initialize a non static member of a class in C++?

在 C++11 中已经可以做到这一点。

只需将 -std=c++11 传递到命令行即可。

关于c++ - 是否允许在类构造函数之外初始化非静态成员?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17351329/

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