/////////////////////////////////////////////////////////////////////////////
class StringClass
{
public:
...
void someProcessing( );
... StringClass& operator=(const StringClass& rtSide);
...
private:
char *a;//Dynamic array for characters in the string
int capacity;//size of dynamic array a
int length;//Number of characters in a
};
Scientific research has concluded that to answer that question one must read the tutorial that firedraco posted.
(I am a professional scientist professor doctor)
PS.
Stop Capitalizing The First Character Of Every Word You Type
Scientific Research Has Concluded It Is Incredibly Annoying
I have question in that link that Grey Wolf said in above topic :
Which feature of reference operator (&) enable us to use from that to make operator chaining ?