有人可以帮我理解为什么以下代码无法编译(g ++ 4.8)。我的理解是可以初始化 POD
#include <iostream>
#include <type_traits>
struct my_int
{
int val_;
};
struct B : public my_int
{
};
int main()
{
std::cout << std::is_pod<my_int>::value << std::endl;
std::cout << std::is_pod<B>::value << std::endl;
const my_int v = { 123 };
//const B v2 = { 123 }; // does not compile with g++ 4.8.
return 0;
}
编译是:
g++ -std=c++11 t.cxx
t.cxx: In function 'int main()':
t.cxx:24:21: error: could not convert '{123}' from '<brace-enclosed initializer list>' to 'const B'
const B v = { 123 };
^
编辑:
感谢大家的回答,我现在理解了聚合初始化的概念。我错过了聚合不能有基类的事实。因此,我目前的实施计划需要改变。我想做类似的事情:
template < typename T >
struct base_class
{
int val_;
};
struct MyInt : public base_class<int>
{
void Func1() {}
};
struct MyDouble : public base_class<double>
{
void Func2() {}
};
我将重写上面的代码,避免使用子类引入特殊的成员函数,同时避免代码重复。