- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Question about wild card in try catch case statement
Thu, 2009-02-12, 18:47
Hi All,
I am wondering why the code below doesn't compile
scala:258> def some = {try {println("something")}catch{case e: _ => e.printStackTrace}}
<console>:1: error: unbound wildcard type
def some = {try {println("something")}catch{case e: _ => e.printStackTrace}}
specially if I want to use _ as a wild card to catch exceptions of all types.
I understand that I can do
scala:254> def some = {try {println("something")}catch{case e:Throwable => e.printStackTrace}}
some: Unit
or even this
scala:265> def some = {try {println("something")}catch{case e => e.printStackTrace}}
some: Unit
but that is not the point ... and I would like to know why _ wild card can't be used instead ??
thanks,
-daya
I am wondering why the code below doesn't compile
scala:258> def some = {try {println("something")}catch{case e: _ => e.printStackTrace}}
<console>:1: error: unbound wildcard type
def some = {try {println("something")}catch{case e: _ => e.printStackTrace}}
specially if I want to use _ as a wild card to catch exceptions of all types.
I understand that I can do
scala:254> def some = {try {println("something")}catch{case e:Throwable => e.printStackTrace}}
some: Unit
or even this
scala:265> def some = {try {println("something")}catch{case e => e.printStackTrace}}
some: Unit
but that is not the point ... and I would like to know why _ wild card can't be used instead ??
thanks,
-daya
Thu, 2009-02-12, 21:17
#2
Re: Question about wild card in try catch case statement
On Thu, Feb 12, 2009 at 11:48 AM, wrote:
> Hi All,
>
> I am wondering why the code below doesn't compile
>
> scala:258> def some = {try {println("something")}catch{case e: _ =>
> e.printStackTrace}}
> :1: error: unbound wildcard type
> def some = {try {println("something")}catch{case e: _ =>
> e.printStackTrace}}
>
> specially if I want to use _ as a wild card to catch exceptions of all
> types.
>
> I understand that I can do
>
> scala:254> def some = {try {println("something")}catch{case e:Throwable =>
> e.printStackTrace}}
> some: Unit
>
> or even this
>
> scala:265> def some = {try {println("something")}catch{case e =>
> e.printStackTrace}}
> some: Unit
>
> but that is not the point ... and I would like to know why _ wild card can't
> be used instead ??
Because _ in types is different from _ in expressions. In a type, _ is
a shorter form of an existential type: Foo[_] means Foo[A] forSome {
type A }. Moreover, the language reference says "A wildcard type must
appear as type argument of a parameterized type," (p. 25) which
explains your type error. But if it were allowed, your pattern would
be equivalent to "case e: A forSome { type A }", which (according to p
24) is the same as "case e: Any".
The short answer is: _ doesn't mean what you think it means. Use Any
instead in such cases, or (even better) just leave off the type
annotation. In a pattern, why do you want to write the annotation at
all?
Matt
I think the wildcard's goal is to match something you don't care about, and not its type.
For instance, you can do
... catch { case _ => println("error")}, which means that you really don't care what the error is, you are just wanting to catch it.
doing
... catch {case e => ... }, you are matching the error and binding it to the val e, and using this bind to call any method.
By specifying the type :
... catch {case e:Throwable => ...} you are simply matching even more precisely.
Note that what you want to do is similar to the second case.
Hope this is clear enough,
Manohar
On Thu, Feb 12, 2009 at 9:48 AM, <scala@daya.otherinbox.com> wrote: