- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Detect if AnyVal or AnyRef
Sun, 2009-01-11, 23:51
1.isInstanceOf[java.lang.Integer] == true
Same for pattern matching.
So how do you differentiate between a primitive value and its boxed equivalent?
Same for pattern matching.
So how do you differentiate between a primitive value and its boxed equivalent?
Mon, 2009-01-12, 19:07
#2
Re: Detect if AnyVal or AnyRef
Not bad. Is there no better way, tough?
On Mon, Jan 12, 2009 at 7:47 AM, Landei <Daniel.Gronau@gmx.de> wrote:
On Mon, Jan 12, 2009 at 7:47 AM, Landei <Daniel.Gronau@gmx.de> wrote:
Naftoli Gugenheim wrote:
>
> 1.isInstanceOf[java.lang.Integer] == true
> Same for pattern matching.
>
> So how do you differentiate between a primitive value and its boxed
> equivalent?
>
>
There is probably a better solution, but you can use the fact that implicit
conversion won't be "chained"
<pre>
object test {
case class IsVal(b:boolean)
implicit def anyVal2isVal(i:AnyVal) = IsVal(true);
implicit def anyRef2isVal(j:AnyRef) = IsVal(false);
def testVal(t:IsVal) = t == IsVal(true);
def main(args:Array[String]) {
val i = 1
val j = Integer.valueOf(2)
println(testVal(i)) //-> true
println(testVal(j)) //-> false
}
}
</pre>
--
View this message in context: http://www.nabble.com/Detect-if-AnyVal-or-AnyRef-tp21405484p21413739.html
Sent from the Scala - User mailing list archive at Nabble.com.
Naftoli Gugenheim wrote:
>
> 1.isInstanceOf[java.lang.Integer] == true
> Same for pattern matching.
>
> So how do you differentiate between a primitive value and its boxed
> equivalent?
>
>
There is probably a better solution, but you can use the fact that implicit
conversion won't be "chained"