gpt4 book ai didi

g++ 中的 C++11 链式构造合规性

转载 作者:太空狗 更新时间:2023-10-29 19:49:33 24 4
gpt4 key购买 nike

我只是想知道 g++ 是否真的符合 C++11 链式构造函数标准(或其他名称)。

例子:

class MyClass
{
MyClass(int x, int y = 0);
MyClass(int y = 0) : MyClass(8, y) {}
};

即使我包含了 -std=c++0x(或 -std=gnu++0x)参数(没有 -std=c++11),我仍然收到此错误

error: type ‘MyClass’ is not a direct base of ‘MyClass’

我不想仓促下结论,我在网上四处张望,但似乎找不到任何相关信息。

顺便说一下,我使用的是 g++ (Debian 4.6.2-4) 4.6.2

最佳答案

not yet supported (寻找委派构造函数)。

除此之外,你不觉得你的设计很含糊吗? MyClass(1) 应该调用什么?

关于g++ 中的 C++11 链式构造合规性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8104799/

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