I am trying to implement the operator [] that is to be used once for Set and once as Get, i need to differentiate between the two cases, as in the case of get, i need to throw an exception if the returned value is equal to -1; whereas in the case of Set i just overwrite the value. appple[2] = X; y=apple[2];
I dont know how to differentiate between the two modes, my function signature is:
double& Security::operator[](QuarterType index){
if(index<0 || index>MAX_QUATERS){
throw ListExceptions::QuarterOutOfBound();
}
return evaluation[index].getValueAddress();
}
C++ does not easily allow distinction of
The most common solution is to return a proxy object:
Proxy require significant attention to detail, I've omitted
const
correctness, life-time management, taking-the-address-of (double & x = apple[2]; x = 17;
), etc.Due to the pitfalls, I tend to avoid them.