I am currently working on overloading the == operator for my linked list. I have the operator in my header set up like the following:
class sqrlst
{
public:
std::vector<int> vlist;
bool operator == (iterator const & rhs )
{
return this->iter == rhs.iter;
};
I then created a method in my header file with the following code
void test()
{
bool flag;
if (vlist.begin()==vlist.begin())
{
flag=true;
}
};
};
However when this method is called it does not go to my overloaded == operator function when it hits the if statment. When I put the debug point on the overload function it says that the line will not be reached.
Any tips or suggestions are greatly appreciated. Thanks!
EDIT: vlist is a list of ints.
begin()return? – tzaman Feb 18 '12 at 4:29operator==forsq_list. But the comparison you are performing looks like is oniterators. If so,operator==will not be called. It will be called if you dovlist==vlist. – Naveen Feb 18 '12 at 4:31rhs.iterwhere asrhsitself is supposed to be anitertaor. Can you post real compilable code with which the problem is reproduciible? – Naveen Feb 18 '12 at 4:37sq_list::beginreturns aconst_iteratorinstead of aniterator? – Naveen Feb 18 '12 at 4:49