从constexpr函数返回一个类需要带有g ++

时间:2015-09-27 09:25:43

标签: c++ g++ c++14 constexpr g++4.9

以下程序适用于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 ++)?

1 个答案:

答案 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;
}