0

我刚刚启动了一个新项目,我的类骨架没有编译。我收到的编译器错误是:

Undefined symbols for architecture x86_64:
  "SQLComm::ip", referenced from:
      SQLComm::SQLComm(int, std::__1::basic_string<char, std::__1::char_traits<char>,     std::__1::allocator<char> >) in SQLComm.o
  "SQLComm::port", referenced from:
  SQLComm::SQLComm(int, std::__1::basic_string<char, std::__1::char_traits<char>,     std::__1::allocator<char> >) in SQLComm.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我不知道为什么我的代码无法编译...这是错误的类:

SQLComm.h:

#ifndef __WhisperServer__SQLComm__
#define __WhisperServer__SQLComm__

#include <iostream>
#include <string>

class SQLComm {
public:
//Local vars
static int port;
static std::string ip;

//Public functions
void connect();
SQLComm(int sqlport, std::string sqlip);
~SQLComm();
private:

};



#endif /* defined(__WhisperServer__SQLComm__) */

这是 SQLComm.cpp:

#include "SQLComm.h"


SQLComm::SQLComm(int sqlport, std::string sqlip){
ip = sqlip;
port = sqlport;
}

SQLComm::~SQLComm(){

}

void SQLComm::connect(){

}

系统是OSX10.9,编译器是GCC(在xCode中)。

如果有人能告诉我为什么会收到此错误,我会很高兴。提前致谢!:)

4

2 回答 2

2

您已经声明了静态变量,但尚未定义它们。你需要添加这个

int SQLComm::port;
std::string SQLComm::ip;

到你的SQLComm.cpp文件。

虽然...考虑一下,这可能不是您想要的。您打算声明非静态成员变量,例如,每个实例都SQLComm应该包含这些变量,对吗?在这种情况下,只需删除static(并且不要将上述内容添加到您的.cpp文件中。

于 2013-11-14T21:31:43.490 回答
2

您需要定义静态类变量。尝试

int SQLComm::port;
std::string SQLComm::ip;

在 SQLComm.cpp 中。

注意:很可能,您不想将这两个变量都声明为静态类变量,而是声明为普通实例变量。

于 2013-11-14T21:34:07.643 回答