包含数组的Struct

时间:2012-04-03 00:01:41

标签: c++ arrays debugging struct deque

我有一个包含std :: arrays的deque。

我想将它转换为包含结构的deque。 我制作的结构是这样的:

struct New_Array {
array<array<int,4>,4> tablee;
int h;
} Jim;

我有一个名为visit的双端队列:

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;
    }

1 个答案:

答案 0 :(得分:1)

示例中PrintBoard的声明是在dfs()中使用它之后的声明。如果这是您的代码的结构方式,那么您之前可能会有另一个PrintBoard声明,它将数组作为参数。很可能你的某个地方有一个旧的声明被你的包裹拉进来。

尝试在使用之前移动PrintBoard声明。