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





