在我正在编写的项目中,我有一个类模板,我将其用作基类,并且它有一个派生类重写的虚方法。虚函数也有自己的实现。不过,我遇到的问题可归结为以下代码:
#include <iostream>
template <typename T> struct A {
virtual void do_something()
#ifdef INLINE_CLASS
{ std::cout << "Saluton, mondo!\n"; }
#else
;
#endif
};
#ifndef INLINE_CLASS
template <typename T> virtual void A<T>::do_something() {
std::cout << "Saluton, mondo!\n";
}
#endif
int main(int argc, char** argv) {
A<int> a;
a.do_something();
return 0;
}
当我使用INLINE_CLASS定义编译时,代码编译正常,但没有它,我得到GCC错误:
pniedzielski@patrick-laptop-debian:~$ g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.7.2-5' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.7.2 (Debian 4.7.2-5)
pniedzielski@patrick-laptop-debian:~$ g++ -std=c++11 -Wall -o test-virtual-template test-virtual-template.cpp
test-virtual-template.cpp:13:23: error: templates may not be ‘virtual’
pniedzielski@patrick-laptop-debian:~$ g++ -std=c++11 -Wall -DINLINE_CLASS -o test-virtual-template test-virtual-template.cpp
pniedzielski@patrick-laptop-debian:~$ ./test-virtual-template
Saluton, mondo!
通常,在我自己的代码中,我会将实现从类模板中删除并将其放在.inl
文件中,但在这种情况下我似乎不能。有什么我想念的吗?这是GCC中的错误吗?或者是根据标准执行此操作的唯一方法是将成员函数定义放在类模板声明中吗?
答案 0 :(得分:5)
此问题与模板无关。
您不应该在成员函数的类外定义中使用virtual
关键字:
template <typename T> void A<T>::do_something() {
std::cout << "Saluton, mondo!\n";
}
例如,请参阅此live example。
中的此编译答案 1 :(得分:2)
单独实施该方法时,您不需要virtual
:
template <typename T>
void A<T>::do_something() {
std::cout << "Saluton, mondo!\n";
}