Inside a class's instance method, accessing instance field <code>count</code>
- A
Cannot access; must use getter
- B
this->count
- C
Dog.count only
- Dcheck_circle
count or this.count (both work)
Explanation
Either is valid; <code>this.</code> is mandatory only when shadowed by a parameter.