bool Stock::operator== (const Stock& stk){
if ( this->get_resource() == (stk.get_resource()) )
return true;
else
return false;
}
I created this method to overload the operations of a class, however, when I instantiate pointers...
asked by
20.02.2017 / 01:36