Hi!
I've got a question about the dot notation in composition with 'this'.
Is there a different effect, between:
and
1 2 3 4 5 6 7 8 9 | public class Example extends Actor { private int Number; public Example( int i) { Number=i; } } |
1 2 3 4 5 6 7 8 9 | public class Example extends Actor { private int Number; public Example( int i) { this .Number=i; } } |