|
|
Time &Time::setTime
isn't this saying that its going to return a reference even though it doesnt return a reference it returns a pointer.. and can't the code be return asTime::& setTime
??
|
|
this
is a pointer to the object, so *this
is an object.
|
|
|
|
|
|