2

我最近在Danny Kalev的文章Get to Know the New C++11 Initialization Forms中发现了一段有趣的代码:

class C
{
string s("abc");
double d=0;
char * p {nullptr};
int y[5] {1,2,3,4};
public:
C();
};

这条线string s("abc");对我来说似乎很可疑。我认为在类中初始化成员时不允许使用构造函数。并且这段代码(简化为class C { string s("abc");};`)不能编译

  • clang 3.6.1(编译器参数是-std=c++11 -Wall -Wextra -Werror -pedantic-errors
  • g++ 5.1.0(编译器参数相同-std=c++11 -Wall -Wextra -Werror -pedantic-errors:)
  • vc++ 18.00.21005.1(编译器参数是/EHsc /Wall /wd4514 /wd4710 /wd4820 /WX /Za
  • vc++ 19.00.22929.0(编译器参数由服务预定义/EHsc /nologo /W4 /c:)

我是对的,这篇文章有错误吗?

4

2 回答 2

4

我是对的,这篇文章有错误吗?

是的,这是文章中的错误。

在数据成员的声明中只允许使用大括号或等号初始化器。dp和的初始化y是正确的,但不是s。这样做的基本原理是使用表达式列表会使声明与函数声明混淆,并且还会导致与类主体中的名称查找发生冲突。

于 2015-06-05T16:29:30.803 回答
1

Bjarne Stroustrup 的一个例子:

class A {
    public:
        A() {}
        A(int a_val) : a(a_val) {}
        A(D d) : b(g(d)) {}
        int a = 7;
        int b = 5;  
    private:
        HashingFunction hash_algorithm{"MD5"};  // Cryptographic hash to be applied to all A instances
        std::string s{"Constructor run"};       // String indicating state in object lifecycle
    };
于 2015-06-05T16:42:01.017 回答