Given a variable with type Graphics, how do I cast it to Graphics2D in Scala?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
The preferred technique is to use pattern matching. This allows you to gracefully handle the case that the value in question is not of the given type:
This block replicates the semantics of the In short, this is really the way to go. It's a little more syntactically bulky than |
|||||||||||||
|
|
|||||||||||||
|