0

我正在尝试从指定我需要的女巫类型的模板类继承一个非模板类

我的代码是这样的:

基类的头文件(更新):

//base.hpp
template<typename T>
class Base {
public:
    Base(T a,int b) :
            aa(b) {
        this->bb = a;
        // ... some code
    }
    // .. some functions ( all are NOT virtual )
protected:
    const int aa;
    T bb;
    // .. some non-constant variables
}

派生类的头文件和代码:

//derived.hpp
#include <SFML/System.hpp>
#iclude "base.hpp"

class Derived: public Base<sf::Vector2i> {
public:
    Derived(float, int, Vector2i);
    // .. other methods
protected:
    // .. other variables
}

//derived.cpp
#include "derived.hpp"

Derived::Derived(float initf, int myint, Vector2i vec) :
        Base(vec, myint) {
    // ... some codes
}

“sf”指的是使用 SFML 库的命名空间。我正在使用使用 cmake 从源代码编译的 SFML 2.0

(有关更多信息,您可以查看:http ://www.sfml-dev.org/ )

当我尝试使用类似于此的命令编译这些代码时:

$ g++ ./main.cpp ./derived.cpp ./base.cpp -lsfml-system

我收到一些链接器错误,告诉您:

In function `Derived::Derived(float, int, sf::Vector2<int>)':
undefined reference to `Base<sf::Vector2<int> >::Base(sf::Vector2<int>, int)'

此外,我使用“g++ (Ubuntu/Linaro 4.7.3-1ubuntu1) 4.7.3”作为启用 C++11 的 C++ 编译器。

4

1 回答 1

1

如果您希望编译器隐式实例化您的模板(您想要的 99.9% 的情况),编译器必须查看成员的定义。将Base构造函数的定义移到标题中,这应该可以解决您的问题。

于 2013-07-05T22:00:15.383 回答