8Fermer10
Kevin KoflerLe 08/08/2007 à 09:31
Il y a un contexte où this est obligatoire:
class myclass {
  private:
    int foo;
  public:
    myclass(int foo) {
      this->foo = foo;
    }
};