- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
null match no NullPointerException
Mon, 2012-01-09, 02:46
Why the following code won't throw a NullPointerException?
null match {
case null => println("null")
case _ => println("none")
}
-Ramesh
Mon, 2012-01-09, 03:11
#2
Re: null match no NullPointerException
Because null is never dereferenced. Here's the bytecode for a method that does that match:
public void f();
Code:
0: aconst_null
1: astore_1
2: aconst_null
3: pop
4: aconst_null
5: ifnonnull 19
8: getstatic #12; //Field scala/Predef$.MODULE$:Lscala/Predef$;
11: ldc #14; //String null
13: invokevirtual #18; //Method scala/Predef$.println:(Ljava/lang/Object;)V
16: goto 27
19: getstatic #12; //Field scala/Predef$.MODULE$:Lscala/Predef$;
22: ldc #20; //String none
24: invokevirtual #18; //Method scala/Predef$.println:(Ljava/lang/Object;)V
27: return
Leaving aside the excessive aconst_nulling at the top, note that the entire match gets translated into the "ifnonnull 19" after loading the appropriate value (i.e. null); it then goes through the appropriate print.
That's exactly what the match asks for, anyway, and that's what you get. Convenient, isn't it!
--Rex
On Sun, Jan 8, 2012 at 8:46 PM, thinkingmind <ramesh.mandaleeka@gmail.com> wrote:
public void f();
Code:
0: aconst_null
1: astore_1
2: aconst_null
3: pop
4: aconst_null
5: ifnonnull 19
8: getstatic #12; //Field scala/Predef$.MODULE$:Lscala/Predef$;
11: ldc #14; //String null
13: invokevirtual #18; //Method scala/Predef$.println:(Ljava/lang/Object;)V
16: goto 27
19: getstatic #12; //Field scala/Predef$.MODULE$:Lscala/Predef$;
22: ldc #20; //String none
24: invokevirtual #18; //Method scala/Predef$.println:(Ljava/lang/Object;)V
27: return
Leaving aside the excessive aconst_nulling at the top, note that the entire match gets translated into the "ifnonnull 19" after loading the appropriate value (i.e. null); it then goes through the appropriate print.
That's exactly what the match asks for, anyway, and that's what you get. Convenient, isn't it!
--Rex
On Sun, Jan 8, 2012 at 8:46 PM, thinkingmind <ramesh.mandaleeka@gmail.com> wrote:
Why the following code won't throw a NullPointerException?
null match {
case null => println("null")
case _ => println("none")
}
-Ramesh
Mon, 2012-01-09, 03:31
#3
Re: null match no NullPointerException
Hi Rex,
Thanks much for the detailed explanation.
Regards,
Ramesh
On Sun, Jan 8, 2012 at 9:02 PM, Rex Kerr <ichoran@gmail.com> wrote:
Thanks much for the detailed explanation.
Regards,
Ramesh
On Sun, Jan 8, 2012 at 9:02 PM, Rex Kerr <ichoran@gmail.com> wrote:
Because null is never dereferenced. Here's the bytecode for a method that does that match:
public void f();
Code:
0: aconst_null
1: astore_1
2: aconst_null
3: pop
4: aconst_null
5: ifnonnull 19
8: getstatic #12; //Field scala/Predef$.MODULE$:Lscala/Predef$;
11: ldc #14; //String null
13: invokevirtual #18; //Method scala/Predef$.println:(Ljava/lang/Object;)V
16: goto 27
19: getstatic #12; //Field scala/Predef$.MODULE$:Lscala/Predef$;
22: ldc #20; //String none
24: invokevirtual #18; //Method scala/Predef$.println:(Ljava/lang/Object;)V
27: return
Leaving aside the excessive aconst_nulling at the top, note that the entire match gets translated into the "ifnonnull 19" after loading the appropriate value (i.e. null); it then goes through the appropriate print.
That's exactly what the match asks for, anyway, and that's what you get. Convenient, isn't it!
--Rex
On Sun, Jan 8, 2012 at 8:46 PM, thinkingmind <ramesh.mandaleeka@gmail.com> wrote:
Why the following code won't throw a NullPointerException?
null match {
case null => println("null")
case _ => println("none")
}
-Ramesh
On 9 January 2012 12:46, thinkingmind <ramesh.mandaleeka@gmail.com> wrote: