下面给出的示例代码未在 g++ 中编译。但它正在视觉工作室工作。是否可以在g ++中的模板类中使用模板成员函数
class Impl
{
public:
template<class I>
void Foo(I* i)
{
}
};
template<class C>
class D
{
public:
C c;
void Bar()
{
int t = 0;
c.Foo<int>(&t);
}
};
int main()
{
D<Impl> d;
d.Bar();
return 0;
}