gpt4 book ai didi

c++ - 未解析的外部符号 "private: static int Math::result"

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

<分区>

这是我的类定义:

#include <iostream>

using namespace std;

class Math
{
private:
static int result;

public:
static int add( int a , int b)
{
result = a + b ;
return result;
};
};

这是主要的:

#include <iostream>
#include "Amin.cpp"

using namespace std;

int main()
{
Math::add(2,3);
}

我在 visual studio 中遇到了这些错误:

error LNK2001: 未解析的外部符号“private: static int Math::result”错误 LNK1120:1 个 Unresolved external 问题

最好的问候

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