繁体   English   中英

为什么不能从初始化列表初始化我的类,即使它派生自 std::list?

[英]Why can't initialize my class from an initializer list even if it derives from std::list?

我有以下代码。

#include <utility>
#include <list>
#include <iostream>

class Pair: public std::pair<unsigned int, unsigned int>{
    Pair (unsigned int h, unsigned int l) : pair(h,l){};
};
class PairList: public std::list<Pair>{};


int main(int argc, char** argv){

    PairList pl = {{800,400},{800,400}};
}

我在命令行中使用 v4.6 的 MinGW g++ 编译它
g++ -std=c++0x Test.cpp -o test.exe
并得到错误:
error: could not convert '{{800, 400}, {800, 400}}' from '<brace-enclosed initializer list>' to 'PairList'
但是如果在 main() 我写
list<pair<unsigned int,unsigned int>> pl = {{800,400},{800,400}};
一切正常。
跆拳道?

有两种方式:

  1. 不要从标准类继承,而是使用typedef

     typedef std::pair<unsigned int, unsigned int> Pair; typedef std::list<Pair> PairList;
  2. 在继承的类中实现正确的构造函数(将std::initializer_list作为参数),基类构造函数不能自动使用。

我推荐第一种选择,因为标准类(除了少数例外)不是为了继承设计的。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM