I'm not quite sure what this means or whats it doing, Could some one elaborate?

Player player = (Player) sender;
link|improve this question

Why is this not a real question? – oxbow_lakes Jun 19 '11 at 16:38
feedback

4 Answers

up vote 4 down vote accepted

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.

link|improve this answer
feedback

That's a plain old java type cast. See the JLS Casting conversion for the full details.

It assumes that sender is type-compatible with a Player.

link|improve this answer
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.

link|improve this answer
feedback

This is an assignment, with a cast operation.

You can learn a lot about java cast operator with the answers to this question: How does the Java cast operator work?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.