gpt4 book ai didi

c++ - 错误 : expected a declaration

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:16:56 26 4
gpt4 key购买 nike

到目前为止,我的 DecisionTree.h 文件中只有

namespace DecisionTree
{
public static double Entropy(int pos, int neg);
}

并且 Visual Studio 已经突出显示了 public 并说

Error: expected a declaration.

我错过了什么?

最佳答案

public 是一个访问说明符。访问说明符仅适用于 class/struct 主体,不适用于 namespace。在 C++ 中(与 Java 不同)它必须在 class 主体内跟一个冒号 :

例如,

class DecisionTree {  // <----- 'class' (not 'namespace')
public: // <------ access specifier
static double Entropy (int pos, int neg);
private:
int i;
};

关于c++ - 错误 : expected a declaration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7578265/

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