-
Notifications
You must be signed in to change notification settings - Fork 176
/
NullPointerExample.java
64 lines (53 loc) · 1.33 KB
/
NullPointerExample.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
public class NullPointerExample {
public void methodA(){
Data d = new Data("Something");
use(d);
d = null;
use(d);
}
public void methodB(Data param){
use(param);
}
public void methodC(){
Data mayNullData = null;
Data notNull = null;
Data mustNull = new Data("Must Be null");
use(mayNullData);
use(notNull);
use(mustNull);
Object o = new Object();
if(o.hashCode() % 2 == 0) {
mayNullData = new Data("I'm not null anymore");
notNull = new Data("Me neither");
mustNull = null;
}
else {
notNull = new Data("Not even in this branch");
mustNull = null;
}
use(mayNullData);
use(notNull);
use(mustNull);
}
public void methodD(){
Data nullData = getNullString();
use(nullData);
Data helloWorldData = getHelloWorld();
use(helloWorldData);
}
public void use(Data d){
System.out.println(d.message);
}
public Data getNullString(){
return null;
}
public Data getHelloWorld(){
return new Data("HelloWorld");
}
class Data {
String message;
public Data(String message){
this.message = message;
}
}
}