Sorry for my poor english. I can't write the korean in my
environment.
My question is about the operator overloading in C++.
We can overload the operator '=' and '[]' respectively.
But how can I overload multiple operator just like "[]=" ??
For example, I have defined a class class_A and an instance
for class_A. And I want to use the class_A like this
ex)
int i;
class_A a;
a[0] = i;
please, give me some idea !!
thanks.