189. this Pointer

Question.4

A developer tries to use this in a static method:

class Logger {
   int level;
public:
   static void setLevel(int l) {
       this->level = l;  // Use this in static method
   }
};

Will this compile?

Need Help? Refer to the Quick Guide below

Select Answer