2

大家好,我有一个编译错误,我似乎无法通过。

这就是我所做的:我声明了一个类 2 的对象,并将它的函数称为“function2”。反过来,这个函数声明了一个 class1 的对象并调用它的函数“function1”。现在,这段代码此时出现编译错误(“function1”无法正确调用):

错误:“)”标记之前的预期主表达式

但是,如果我取消注释无用的“function1”,那么代码就会编译。我觉得这很混乱,因为这不是被调用的函数,根本不应该影响。

#include <iostream>
using namespace std;

template<int parameter1>
class class1 {
    public:

    template < int parameter2 > void function1() {
        cout << "We do useful things here" << endl;
    }
};

template < int parameter3 >
class class2 {
    public:

    //template < char a, char b > bool function1() {
    //    cout << "Useless definition (?)" << endl;
    //}

    void function2() {
        class1 < parameter3 > an_instance_of_class1;
        an_instance_of_class1.function1 < 999 > ();
    }
};

int main(int argc, char** argv) {
    class2 < 99 > an_instance_of_class2;
    an_instance_of_class2.function2();
}

有谁知道我错过了什么?提前致谢。

编译器版本:

$ g++ --version
g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
4

1 回答 1

6

您需要使用.template

an_instance_of_class1.template function1 < 999 > ();

在此处查看接受的答案以获取更多详细信息。

于 2012-08-24T10:24:55.373 回答