C ++无法解析的外部符号

您好iam begginer在c + +我有静态方法的类,我不能访问它,它会引发一个错误

    1>------ Build started: Project: CPractice, Configuration: Debug Win32 ------
1>  Source.cpp
1>Source.obj : error LNK2001: unresolved external symbol "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > CPractice::name" (?name@CPractice@@0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A)
1>c:usersinnersoftdocumentsvisual studio 2012ProjectsCPracticeDebugCPractice.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

这是我的代码

#include <iostream>
#include <stdio.h>
#include <cstdlib>
#include <string>

using namespace std;

class CPractice
{
    public:
        static void setName(string s)
        {
            name = s;
        }
        static string getName()
        {
            return name;
        }
    private:
        static string name;
};


int main()
{


    CPractice::setName("Name");
    cout << "n" << CPractice::getName();
    system("PAUSE");
    return EXIT_SUCCESS;
}

static string name;

因为它是static ,所以这行只声明name - 你也需要定义它。 只需将它放置在类定义的下面:

string CPractice::name;

如果最终将类移到相应的头文件和实现文件中,请确保将此定义放在实现文件中。 它只应在单个翻译单元中定义。


你只在类中声明了name ,静态变量需要在类之外定义:

string CPractice::name ="hello" ;

由于name是一个静态数据成员,因此您应该初始化它:)并且不要指望默认实例相关的构造函数。

在类定义之后添加这个(是的,我知道它的困惑,因为你的成员是私有的,但这只是一个初始化):

string CPractice::name;
链接地址: http://www.djcxy.com/p/85755.html

上一篇: C++ unresolved external symbol

下一篇: compiling c++ with gcc/g++ compiler