- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Re: Abstract Types and Polymorphism
Wed, 2008-12-31, 23:42
>>>>> "Santiago" == Santiago Hirschfeld writes:
Santiago> The question is this: Is there any way to get the value as
Santiago> Int from the IntType object when st is declared as SomeType?
These both work:
val i: Int = st.asInstanceOf[IntType].value
val i: Int = st.value.asInstanceOf[Int]
Thank you very much.
I certanly didn't expected an answer today =)
Have a happy new year!
On Wed, Dec 31, 2008 at 8:43 PM, Seth Tisue wrote:
>>>>>> "Santiago" == Santiago Hirschfeld writes:
>
> Santiago> The question is this: Is there any way to get the value as
> Santiago> Int from the IntType object when st is declared as SomeType?
>
> These both work:
>
> val i: Int = st.asInstanceOf[IntType].value
> val i: Int = st.value.asInstanceOf[Int]
>
> --
> Seth Tisue / http://tisue.net
> lead developer, NetLogo: http://ccl.northwestern.edu/netlogo/
>