This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Re: Abstract Types and Polymorphism

1 reply
Seth Tisue
Joined: 2008-12-16,
User offline. Last seen 34 weeks 3 days ago.

>>>>> "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]

Santiago Hirschfeld
Joined: 2008-12-31,
User offline. Last seen 42 years 45 weeks ago.
Re: Abstract Types and Polymorphism

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/
>

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland