类型错误的引用的初始化无效

时间:2011-05-17 01:55:44

标签: c++ programming-languages c++builder

百万感谢任何愿意帮助我的人。

首先,代码:

#include <iostream>
#include <string>
#include <fstream>
#include <vector>

using namespace std;

void Beolvas (vector<vector<int> > mat);
bool VanNemNull (const vector<vector<int> > &mat);

int main()
{
cout << "Van-e a mátrixnak olyan oszlopa, hogy a főátló alatt csak 0-át tartalmaz, és ha igen, akkor melyik az?\n" <<endl;

    char ch;
    do{
        // Adatbevitel
        vector<vector<int> > mat;
        Beolvas(mat);

        //Kiértékelés
        int i;
       if (VanNemNull(&mat[i])) cout<<"szupiiiiii";

        cout<< endl << "Futtassam újra?   (I/N)";cin>>ch;
        }while (ch!='n' && ch!='N');
    return 0;
}

void Beolvas(vector<vector<int> > mat)
{
    ifstream fajl;
    bool hiba;
    string str;

    do{
        cout << "Fajl neve:";
        cin >> str;
        fajl.open(str.c_str());
        if (hiba = fajl.fail())
        {
            cout << "Nincs ilyen nevű fájl" << endl;
            fajl.clear();
        }
    }while (hiba);

    int n;
    fajl >> n;
    if (n<1)
    {
        cout<<"Helytelen a mátrix mérete\n Kérem ellenőrizze a forrásfájlt!\n";
        cout<<"E megnyomásával kilép"<<endl;

    char ex;
    do{
        cin>>ex;
        }while (ex!='e' && ex!='E');exit(0);
    }

    mat.resize(n);
    for(int i=0; i<n; ++i)
        {
            mat[i].resize(n);
            for (int j=0; j<n; ++j)
            {
                fajl >> mat[i][j];
            }
        }
    fajl.close();
    cout<<"A mátrix a következöképpen néz ki:"<<"\n";
    cout<<"Elemszáma: "; cout<<n*n<<"\n";
    for (int i=0; i<n; ++i)
        {
            for (int j=0; j<n; ++j)
            {
                cout<<mat[i][j]<<"\t";
            }
            cout<<"\n";

        }

}

/*void Vansor (const vector<vector<int> > mat)
{
    //bool l = false;
}*/

bool VanNemNull (const vector<vector<int> > mat)
{
    bool l = false;
    int i=0;
    cout<<(int)mat.size();
    for (int j=i+1; !l && j<(int)mat.size(); ++j)
    {
        cout<<mat[j][i]<<"\n";
        if (l) cout<<"hej\n";
        l = (mat[j][i]!=0);
        if (l= true) cout<<"22"; else cout<<"11";

    }
    return (l);
}

主要问题(我认为)是最后一部分。另外,我收到以下错误消息:

||In function `int main()':|
|23|error: invalid initialization of reference of type 'const std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >&' from expression of type 'std::vector<int, std::allocator<int> >*'|
|9|error: in passing argument 1 of `bool VanNemNull(const std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >&)'|
||=== Build finished: 2 errors, 0 warnings ===|

2 个答案:

答案 0 :(得分:1)

首先是编译错误:

vector<vector<int> > mat;
...
if (VanNemNull(&mat[i])) cout<<"szupiiiiii";

不匹配:bool VanNemNull (const vector<vector<int> > mat);

您正在传递vector_of_ints(vector_of_vector_of_int的元素)的副本作为参数。 你应该这样称呼它:

if (VanNemNull(mat)) ...

或将功能更改为如下所示:

 bool VanNemNull (const vector<int> > mat);

并更改实现(关于 mat [j] [i] 的用法)。

你也可以在if (VanNemNull(&mat[i])中使用变量i而不用初始化i。

其次,您致电

void Beolvas(vector<vector<int> > mat );

也是使用mat的副本完成的,因此您在BeolVas(..)中所做的更改将应用​​于该副本,并在函数返回时丢失。 你应该把它改成:

void Beolvas(vector<vector<int> >& mat )

答案 1 :(得分:0)

&mat[i]的类型为vector<int>*,您将其传递给引用vector<vector<int> >的函数。我不明白你的代码做得怎么样,告诉你如何解决它,但现在你知道错误意味着什么。