I'm not quite sure what this means or whats it doing, Could some one elaborate?
Player player = (Player) sender;
feedback
|
|
It takes the object referenced by sender, and attempts to cast it into the type Player. Java objects are strongly typed, which means you have to declare the type of the object. If the object referenced by sender cannot be cast to a Player object, than an exception will be thrown for an InvalidCast. | |||
|
feedback
|
|
That's a plain old java type cast. See the JLS Casting conversion for the full details. It assumes that | |||
|
feedback
|
|
It converts sender to a Player object. Otherwise, the datatype of player wouldnt match the datatype of sender. Usually done if sender could initially have been declared as a subclass. | |||
|
feedback
|
|
This is an assignment, with a You can learn a lot about java | |||
|
feedback
|