gpt4 book ai didi

c++ - 创建元素为数组的堆栈

转载 作者:太空宇宙 更新时间:2023-11-04 15:27:54 25 4
gpt4 key购买 nike

在我的 Qt 项目中我有枚举:

enum Field {EMPTY=0, WHITE=1, BLACK=2};

这个枚举的数组:

Field field[8][8];

现在我需要创建这个数组的堆栈。堆栈的每个元素都必须是 field[8][8]。我怎样才能做到?

最佳答案

struct FieldMatrix { Field fields[8][8]; };

// not familiar with Stack, but here's the standard library stack type
std::stack<FieldMatrix> foo;

关于c++ - 创建元素为数组的堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4130540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com