I'm struggling with a problem concerning the overloading of the binary comparison operator >. By design, it is supposed to compare two cards and return either 1 (if the left-hand-side argument is bigger) or 0 (in the opposite case).
Here's a brief description of the problem:
class Card includes, among other stuff, the variables int suit and int value as private data members. I've declared the overloaded operator function as follows:
int operator>(const Card& lhs, const Card& rhs);
Because it needs to access private data members of class Card, it is declared with the friend qualifier in the class declaration.
The function itself is confirmed to work as described. The real problem lies with providing the two arguments by calling a 'getter' function of the following form:
Card &Node::getCardRef() const{
Card& ref = *c;
return ref;
}
where the variable c is of type Card * and points to a valid object of type Card. Also, an instance of class Node represents a node in a singly-linked list.
Combining the two functions in the following manner causes a segfault (specifically, in gdb terms "In Card &Node::getCardRef(): this = 0x0"):
if (node.getCardRef() > node.getNext()->getCardRef()){
/* do wondrous stuff */
}
Also, when isolated, Card &Node::getCardRef() seems to produce desired results.
cresides on stack or freestore? if it resides on stack,then you are returning a reference to an local variable which results in an Undefined Behavior. – Als Dec 2 '11 at 17:16operator>returningbool– crashmstr Dec 2 '11 at 17:17this = 0x0looks like a NULL pointer to me. – Blastfurnace Dec 2 '11 at 17:31