以下程序适用于g ++ 4.9.2(Ubuntu 4.9.2-10ubuntu13),但函数virtual
需要get
关键字:
//g++ -std=c++14 test.cpp
//test.cpp
#include <iostream>
using namespace std;
template<typename T>
constexpr auto create() {
class test {
public:
int i;
virtual int get(){
return 123;
}
} r;
return r;
}
auto v = create<int>();
int main(void){
cout<<v.get()<<endl;
}
如果我省略virtual
关键字,则会收到以下错误:
test.cpp: In instantiation of ‘constexpr auto create() [with T = int]’:
test.cpp:18:22: required from here
test.cpp:16:1: error: body of constexpr function ‘constexpr auto create() [with T = int]’ not a return-statement
}
^
如何在不使用virtual
关键字的情况下获取上述代码(使用g ++)?
答案 0 :(得分:0)
在函数外部无法访问函数内定义的类。
我的建议是:在函数外声明test
并将const
限定符添加到get
函数。
#include <iostream>
using namespace std;
class test {
public:
int i;
int get() const {
return 123;
}
};
template<typename T>
constexpr test create() {
return test();
}
auto v = create<int>();
int main(void){
cout<<v.get()<<endl;
}