我有一个包含std :: arrays的双端队列。
我想将其转换为包含结构的双端队列。
我制作的结构是这样的:
struct New_Array {
array<array<int,4>,4> tablee;
int h;
} Jim;
我有一个双端队列名为Visited:
deque<New_Array> visited;
我有一个类似的功能,可以打印名为PrintBoard的数组。
void PrintBoard(New_Array tt) {
using namespace std;
for (int iRow = 0; iRow < 4; ++iRow) {
for (int iCol = 0; iCol < 4; ++iCol) {
cout << tt.tablee[iRow][iCol];
cout << " ";//This space helps so the numbers can be visable
//to the user
}
cout << endl;
}
}
当我写
PrintBoard(visited.front());
时,它给了我error C2664: 'PrintBoard cannot convert parameter 1 from 'New_Array' to std:tr1::array<_Ty,Size>'.
问题是什么?我从未将表用作一维。
编辑:
#include <deque>
#include <vector>
#include <array>
using namespace std;
struct New_Array {
array<array<int,4>,4> tablee;
int h;
}str_test,Jim;
deque<New_Array> visited;
void dfs()
{
PrintBoard(visited.front());//****the error is in this line****
}
void PrintBoard(New_Array tt) {
using namespace std;
for (int iRow = 0; iRow < 4; ++iRow) {
for (int iCol = 0; iCol < 4; ++iCol) {
cout << tt.tablee[iRow][iCol];
cout << " ";//This space helps so the numbers can be visable
//to the user
}
cout << endl;
}
}
int main()
{
dfs();
char test_char;
cin>> test_char;
return EXIT_SUCCESS;
}
最佳答案
您的示例中的PrintBoard
声明位于dfs()
中的位置之后。如果这是代码的结构方式,那么您可能在前面还有另一个PrintBoard
声明,该声明将数组作为参数。您的位置可能有一个旧的声明,该声明已被包含在其中。
尝试在使用PrintBoard
的声明之前将其移动。