奇怪的const_iterator行为

时间:2012-02-08 21:00:31

标签: c++ matrix sparse-matrix const-iterator

我正在做一个main.cpp来测试我的稀疏矩阵的实现,我创建了两个const_iterator:

SparseMatrix<double>::const_iterator a,b;
a=mata.begin(); //mata previously created as SparseMatrix<double>
b=mata.end();
... //code goes on

问题是它不调用begin和end(它甚至不执行初始cout),但是如果我创建两个迭代器就可以了。 以下是我为const_iterators实现begin和end的方法。

const_iterator begin() const
{
    cout<<"Begin"<<endl;
    int minr=minRow();
    int minc=minCol(findRow(minr));
    mcol * mc=findCol(findRow(minr),minc);
    const_iterator x;
    if(mc!=NULL)
    {
        T* dato=&(mc->data);
        x= const_iterator(genElement(minr,minc,dato));
    }
    else
    {
        x=const_iterator(NULL);
    }
    x.setSM(const_cast<SparseMatrix<T>*>(this));
    return x;
}

const_iterator end() const
{
    cout<<"End"<<endl;
    const_iterator x= const_iterator(NULL);
    x.setSM(const_cast<SparseMatrix<T>*>(this));
    return x;
}

我注意到一个奇怪的事情是,如果我在SparseMatrix的类方法中创建了两个const_iterator,它们就可以工作。

1 个答案:

答案 0 :(得分:2)

正如您所说,“mata [ sic ]之前已创建为SparseMatrix<double>”,但您展示的beginend是标记为const。对于要调用的const个成员函数,对象meta必须为const,否则为constbegin的非end版本将被召唤。