gpt4 book ai didi

c++ - 虚成员函数定义可以出现在类模板之外吗?

转载 作者:行者123 更新时间:2023-11-30 00:36:28 26 4
gpt4 key购买 nike

在我正在编写的一个项目中,我有一个用作基类的类模板,它有一个派生类覆盖的虚方法。虚函数也有自己的实现。不过,我遇到的问题可以归结为以下代码:

#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 中的错误吗?还是按照标准只能将成员函数定义放在类模板声明中?

最佳答案

此问题与模板无关

您根本不应该在成员函数的类外定义中使用 virtual 关键字:

template <typename T> void A<T>::do_something() {
std::cout << "Saluton, mondo!\n";
}

参见这个编译,例如,在这个 live example .

关于c++ - 虚成员函数定义可以出现在类模板之外吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15999888/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com