使用成员函数指针的c ++模板用法

时间:2013-03-27 09:38:43

标签: c++ templates member-function-pointers

以下根本无法编译,我无法修复它。 希望一个好的灵魂可以让我明白如何解决这个例子。

谢谢

我尝试编译:

# make
g++    -c -o client.o client.cpp
client.cpp: In function `int main()':
client.cpp:7: error: missing template arguments before "t"
client.cpp:7: error: expected `;' before "t"
client.cpp:8: error: `t' undeclared (first use this function)
client.cpp:8: error: (Each undeclared identifier is reported only once for each function it appears in.)
<builtin>: recipe for target `client.o' failed
make: *** [client.o] Error 1

client.cpp - 主要

#include<stdio.h>
#include"Test.h"
#include"Other.h"

int main() {

        Test<Other> t = Test<Other>(&Other::printOther);
        t.execute();

        return 0;
}

Test.h

#ifndef TEST_H
#define TEST_H

#include"Other.h"

template<typename T> class Test {

        public:
                Test();
                Test(void(T::*memfunc)());
                void execute();

        private:
                void(T::*memfunc)(void*);
};

#endif

Test.cpp的

#include<stdio.h>
#include"Test.h"
#include"Other.h"


Test::Test() {
}

Test::Test(void(T::*memfunc)()) {
        this->memfunc= memfunc;
}

void Test::execute() {
        Other other;
        (other.*memfunc)();
}

Other.h

#ifndef OTHER_H
#define OTHER_H

class Other {
        public:
                Other();
                void printOther();
};

#endif

Other.cpp

#include<stdio.h>
#include"Other.h"


Other::Other() {
}

void Other::printOther() {
        printf("Other!!\n");
}

生成文件

all: main

main: client.o Test.o Other.o
        g++ -o main $^

clean:
        rm *.o

run:
        ./main.exe

Makefile可以轻松编译。

2 个答案:

答案 0 :(得分:4)

不幸的是it's not possible将模板类的实现编写到cpp文件中(即使there is a workaround,如果您确切知道要使用的类型)。应在头文件中声明和实现模板类和函数。

您必须在其头文件中移动Test的实现。

答案 1 :(得分:1)

简单修复: 将Test.cpp中函数的定义内联移动到Test.h中的类

模板类的成员函数的定义必须在相同的编译器单元中。通常在定义类的相同.h中。如果你没有在函数的定义中内联到类中,并且只想要声明,则需要在每个函数的定义(以及定义的一部分)之前添加“魔术”单词template<typename T> 。这只是一个大致的答案,为您提供修改参考文档的方向,以及一些示例。