我正在构建自己的函数库,用于帮助我学习C ++。 我正在尝试一个简单的QT应用程序,当我运行应用程序时,我得到一个未定义的错误。 不知道我做错了什么,可能是一个菜鸟。
图书馆档案
CC_Number.h
#ifndef CC_NUMBER_H
#define CC_NUMBER_H
#include <string>
using namespace std;
class CC_Number
{
public:
CC_Number();
virtual ~CC_Number();
int randCC(int imin=0, int imax=1);
int arraySize(int x[]);
int arraySize(double x[]);
int arraySize(float x[]);
int arraySize(string x[]);
string int_to_str(int i);
protected:
private:
};
#endif // CC_NUMBER_H
CC_Number.cpp
#include "CC_Number.h"
#include <sstream>
using namespace std;
CC_Number::CC_Number()
{
//ctor
}
CC_Number::~CC_Number()
{
//dtor
}
string CC_Number::int_to_str(int i){
stringstream ss;
ss << i;
string str = ss.str();
return str;
}
调用库的代码
Animal_Birthdate.h
#ifndef ANIMAL_BIRTHDATE_H
#define ANIMAL_BIRTHDATE_H
#include "/home/mongo/Cpp/CC_Cpp/CC_Number.h"
#include <iostream>
#include <string>
using namespace std;
class Animal_Birthdate
{
public:
Animal_Birthdate();
Animal_Birthdate(int m, int d, int y);
string getBirthdate();
private:
int intMonth;
int intDay;
int intYear;
};
#endif // ANIMAL_BIRTHDATE_H
Animal_Birthdate.cpp
#include "animal_birthdate.h"
#include "/home/mongo/Cpp/CC_Cpp/CC_Number.h"
#include <iostream>
#include <string>
using namespace std;
Animal_Birthdate::Animal_Birthdate()
:intMonth(1), intDay(1), intYear(1)
{
}
Animal_Birthdate::Animal_Birthdate(int m, int d, int y)
:intMonth(m), intDay(d), intYear(y)
{
}
string Animal_Birthdate::getBirthdate()
{
CC_Number c;
string bd = c.int_to_str(intMonth);
return bd;
}
我收到的错误 /home/mongo/Cpp/CC_Herd_Manager/animal_birthdate.o:-1:在函数`Animal_Birthdate :: getBirthdate()'中:
/home/mongo/Cpp/CC_Herd_Manager/animal_birthdate.cpp:-1:错误:未定义引用`CC_Number :: CC_Number()'
/home/mongo/Cpp/CC_Herd_Manager/animal_birthdate.cpp:-1:错误:未定义引用`CC_Number :: int_to_str(int)'
CC_Cpp.pro的内容
#-------------------------------------------------
#
# Project created by QtCreator 2013-05-31T10:42:21
#
#-------------------------------------------------
QT -= core gui
TARGET = CC_Cpp
TEMPLATE = lib
DEFINES += CC_CPP_LIBRARY
SOURCES += \
CC_Number.cpp \
CC_File.cpp
HEADERS +=\
cc_cpp_global.h \
CC_Number.h \
CC_File.h
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}
答案 0 :(得分:0)
看起来你不需要“图书馆”来做你正在做的事情。我建议只使用链接在一起的多个翻译单元作为起点。即删除TEMPLATE = lib
即可设置。
如果您想学习如何使用qmake
创建库,请阅读TEMPLATE = subdirs
并阅读qmake的文档,其中包含有关如何生成库的所有信息,静态和动态之间的区别是,如何链接到他们等等。
答案 1 :(得分:0)
我将以下内容添加到试图使用该库的项目的模板文件中,并且它有效。
SOURCES += main.cpp\
mainwindow.cpp \
animal.cpp \
email.cpp \
owner.cpp \
phone.cpp \
/home/mongo/Cpp/CC_Cpp/CC_Number.cpp \
/home/mongo/Cpp/CC_Cpp/CC_Date.cpp \
/home/mongo/Cpp/CC_Cpp/CC_TimeStamp.cpp
HEADERS += mainwindow.h \
animal.h \
email.h \
owner.h \
phone.h \
/home/mongo/Cpp/CC_Cpp/CC_Number.h \
/home/mongo/Cpp/CC_Cpp/CC_Date.h \
/home/mongo/Cpp/CC_Cpp/CC_TimeStamp.h