Bonjour,
Je vois très souvent ceci:
Code :
- String &String:::operator=(const String &chr)
- {
- /* code */
- return *this;
- }
|
Quel est l'interet de retourner this ? Ne serait t-il pas plus simple de faire ceci:
Code :
- void String:::operator=(const String &chr)
- {
- /* code */
- }
|
Merci...