こんにちはIAM begginer ++私は、静的メソッドを持つクラスを持っていると私はそれが私のコードC++未解決の外部シンボル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" ([email protected]@@[email protected][email protected]@[email protected]@[email protected]@[email protected]@[email protected]@A)
1>c:\users\innersoft\documents\visual studio 2012\Projects\CPractice\Debug\CPractice.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;
}
は、私はそれを宣言したときに出回っ定義されていることを考えました。その作品、ありがとうございます –
@SilvioMarijic人々がよくある間違いです。それが定義ではない理由は、複数の定義を避けることです。それが定義であって、それが他の多くのファイルに入っているヘッダーを含めると、同じ静的メンバーの複数の定義があります。とにかく、あなたを最も助けてくれた答えを受け入れることによって、感謝を言うことを忘れないでください。 –