What is the difference between specifying the return value/type(not sure what to say) as a reference:
CVector& CVector::operator= (const CVector& param)
and as a regular variable:
CVector CVector::operator= (const CVector& param)
Thanks!
What is the difference between specifying the return value/type(not sure what to say) as a reference:
CVector& CVector::operator= (const CVector& param)
and as a regular variable:
CVector CVector::operator= (const CVector& param)
Thanks!