gpt4 book ai didi

c++ - 创建一个可以接收 board1[{1,1}] ='X' 的类; ? (方括号内的大括号)

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:17:18 25 4
gpt4 key购买 nike

我得到了 H.W.在 main.cpp 的其中一行中我应该支持:

board1[{1,1}]='X';

这背后的逻辑含义是将 (1,1) 位置的字符 'X' 分配给“游戏板”。我不知道如何创建一个接收大括号的数组,例如 [{int,int}]。

我该怎么做?

附言因为这些是符号而不是字符(并且因为我不认识属于这个问题的任何术语)所以很难在谷歌中搜索此类问题,所以这可能是重复的:-(,希望不是。

我尝试过:

第一次尝试:

vector<vector<int> > matrix(50);
for ( int i = 0 ; i < matrix.size() ; i++ )
matrix[i].resize(50);
matrix[{1,1}]=1;

第二次尝试:

int mat[3][3];
//maybe map
mat[{1,1}]=1;

第三次尝试:

class _mat { // singleton
protected:
int i ,j;

public:
void operator [](string s)
{
cout << s;
}
};

_mat mat;
string s = "[{}]";
mat[s]; //this does allow me to do assignment also the parsing of the string is a hustle

最佳答案

你需要做类似的事情:

    struct coord {
int x;
int y;
};

class whatever
{
public:
//data being what you have in your board
data& operator[] (struct coord) {
//some code
}
};

关于c++ - 创建一个可以接收 board1[{1,1}] ='X' 的类; ? (方括号内的大括号),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50130790/

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