没有用于调用'begin(int **&)'的匹配函数

时间:2014-12-14 03:24:00

标签: c++ arrays c++11 compilation

我写了一个c ++程序为fllow(3.43.cpp):

#include <iostream>
using std::cout;
using std::endl;

void version_1(int **arr) {
    for (const int (&p)[4] : arr) {
        for (int q : p) {
            cout << q << " ";
        }
        cout << endl;
    }
}

int main() {
    int arr[3][4] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
    version_1(arr);
    return 0;
}

然后我使用:gcc my.cpp -std=c++11编译它,有一个我无法处理的错误。 的信息:

3.43.cpp:6:30: error: no matching function for call to ‘begin(int**&)’
     for (const int (&p)[4] : arr) {
                              ^
3.43.cpp:6:30: note: candidates are:
In file included from /usr/include/c++/4.8.2/bits/basic_string.h:42:0,
                 from /usr/include/c++/4.8.2/string:52,
                 from /usr/include/c++/4.8.2/bits/locale_classes.h:40,
                 from /usr/include/c++/4.8.2/bits/ios_base.h:41,
                 from /usr/include/c++/4.8.2/ios:42,
                 from /usr/include/c++/4.8.2/ostream:38,
                 from /usr/include/c++/4.8.2/iostream:39,
                 from 3.43.cpp:1:
/usr/include/c++/4.8.2/initializer_list:89:5: note: template<class _Tp> constexpr const _Tp* std::begin(std::initializer_list<_Tp>)
     begin(initializer_list<_Tp> __ils) noexcept

我在谷歌搜索它,但没有找到类似的答案。

3 个答案:

答案 0 :(得分:11)

由于arr只是一个指针,因此无法推断它有多大。但是,既然你实际上是在传入一个真正的数组,你可以在你的维度上模拟你的函数,这样你就可以通过引用获取实际的数组而不是让它衰减到一个指针:

template <size_t X, size_t Y>
void foo(const int (&arr)[X][Y])
{
    std::cout << "Dimensions are: " << X << "x" << Y << std::endl;

    for (const int (&row)[Y] : arr) {
        for (int val : row) {
            std::cout << val << ' ';
        }
        std::cout << std::endl;
    }
}

int main() {
    int arr[3][4] = {{1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12}};
    foo(arr);
}

答案 1 :(得分:2)

std::begin()std::end()无法为指针工作。它们只适用于数组。如果您想要推断出数组的大小,您需要将其作为参考传递给您的函数:

#include <cstddef>
template <std::size_t A, std::size_t B>
void version_1(int (&arr)[B][A]) {
    for (const int (&p)[A] : arr) {
        for (int q : p) {
            cout << q << " ";
        }
        cout << '\n';
    }
}

答案 2 :(得分:1)

指针与数组不同。为了能够使用基于范围的容器,您的容器必须支持std::beginstd::end。可以使用标准C数组,但不能使用指针。