2012年3月19日 星期一

operator 呼叫

bool CObjectChild::operator==(const CObjectChild & rhs) const
{
    // Check two object are the same object type
    if ( CObjectData::operator !=(rhs) ) //Call base class 先判斷
        return false;

… 做剩下的child 要再判斷的..

}

沒有留言: