【问题标题】:Compile-time generating an array of non-constexpr objects that should be created in constructor编译时生成应在构造函数中创建的非 constexpr 对象数组
【发布时间】:2019-12-19 13:03:52
【问题描述】:

你已经做了一个结构的例子,它看起来像这样:

#include <array>
enum class ItemType
{
  Tree,
  Bush,
  Flower,
  Grass,
  Mushroom,
  CountOfTypes
};

class Items;

class Item
{
public:
  Item(Items* parentContainer, ItemType type) : parentContainer(parentContainer), type(type) { DoSomething(); }
  ItemType type;
  // Parent container needs to be acessed occasionally
  Items* parentContainer;
  // This cannot be constexpr
  void DoSomething();
};

class Items
{
public:
  using ItemArray = std::array<Item, ItemType::CountOfTypes>;
  // Should contain one item per type, at index equal to that type
  ItemArray items;
};

注意对数组内容的要求,items 数组必须始终为真:

ItemType someType = ... any of item type enum except of CountOfTypes ...;
/// must be true
items[(size_t)someType].type == someType;

这段代码不会编译,因为Item没有默认构造函数,但我们尝试在Items::Items中分配它。即使它确实编译了,这些值也将是未初始化的,我们不希望这样。

解决此问题的一种方法是按正确顺序手动枚举类型:

class Items
{
public:
  Item items[(size_t)ItemType::CountOfTypes] = { {this, ItemType::Tree}, {this, ItemType::Bush}, {this, ItemType::Grass}, {this, ItemType::Mushroom} };
};

另一种选择是将默认构造函数添加到Item,然后调用一些初始化函数。我也不喜欢。

但我过去几次使用std::make_integer_sequence,我想再试一次。如果上面的代码是有效的,应该有一些生成它的序列。因此,我尝试了这个:

class Items
{
public:
  using ItemArray = std::array<Item, (size_t)ItemType::CountOfTypes>;
  template <int... Indices>
  static ItemArray GenerateItems(std::integer_sequence<int, Indices...>, Items* parent) { return { ({parent, Indices})... }; }

  ItemArray items = GenerateItems(std::make_integer_sequence<int, static_cast<int>(ItemType::CountOfTypes)>{}, this);
};

这是基于我之前对该功能的使用。我不确定这是否是正确的方法。

我在 Visual Studio 中遇到的错误是:

1>o:\projects\cpptest\cpptest\cpptest\arraywiththis.cpp(30): error C2760: syntax error: unexpected token '{', expected 'expression'
1>o:\projects\cpptest\cpptest\cpptest\arraywiththis.cpp(30): note: This diagnostic occurred in the compiler generated function 'Items::ItemArray Items::GenerateItems(std::integer_sequence<int,Indices...>,Items *)'

GCC 更加直言不讳(他们的错误消息在过去 6 年中得到了难以想象的改善):

PS O:\projects\cpptest\CPPTest\CPPTest> g++ .\ArrayWithThis.cpp
.\ArrayWithThis.cpp: In static member function 'static Items::ItemArray Items::GenerateItems(std::integer_sequence<int, Indices ...>, Items*)':
.\ArrayWithThis.cpp:30:117: error: expected ';' before '}' token
   static ItemArray GenerateItems(std::integer_sequence<int, Indices...>, Items* parent) { return { ({parent, Indices})... }; }
                                                                                                                     ^
                                                                                                                     ;
.\ArrayWithThis.cpp: In instantiation of 'static Items::ItemArray Items::GenerateItems(std::integer_sequence<int, Indices ...>, Items*) [with int ...Indices = {0, 1, 2, 3}; Items::ItemArray = std::array<Item, 4>]':
.\ArrayWithThis.cpp:32:116:   required from here
.\ArrayWithThis.cpp:30:123: error: could not convert '{((void)0, 0), ((void)0, 1), ((void)0, 2), ((void)0, 3)}' from '<brace-enclosed initializer list>' to 'Items::ItemArray' {aka 'std::array<Item, 4>'}
   static ItemArray GenerateItems(std::integer_sequence<int, Indices...>, Items* parent) { return { ({parent, Indices})... }; }

这尤其困扰着我:((void)0, 0)Why void?

我正在尝试做的事情可能吗?如果是,如何修复我的代码?

【问题讨论】:

    标签: c++ arrays enums c++17 compile-time


    【解决方案1】:

    你有多余的括号;可能是:

    class Items
    {
    public:
      static constexpr std::size_t ItemCount = static_cast<std::size_t>(ItemType::CountOfTypes);
      using ItemArray = std::array<Item, ItemCount>;
    
      template <std::size_t ... Is>
      static ItemArray GenerateItems(std::index_sequence<Is...>, Items* parent)
      { return {{ Item{parent, Indices}... }}; }
    
      ItemArray items = GenerateItems(std::make_index_sequence<ItemCount>{}, this);
    };
    
    

    【讨论】:

    • 值得一提的是为什么这里不允许使用括号(即大括号初始化的有限上下文)。
    • 谢谢,这行得通。但是你能解释一下代码吗?为什么有两个{ 括号?
    • std::array 有点特殊,因为它是一个聚合类,第一个{}是类,第二个是c-array成员。只有一个就足够了(但某些编译器会在这种情况下发出警告)。
    猜你喜欢
    • 2018-10-04
    • 1970-01-01
    • 2023-01-05
    • 1970-01-01
    • 1970-01-01
    • 2023-03-25
    • 2017-08-21
    • 1970-01-01
    • 2020-09-25
    相关资源
    最近更新 更多