-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnil.go
57 lines (44 loc) · 841 Bytes
/
nil.go
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
package main
type A struct {
x int32
}
type B struct {
a *A
}
type C struct {
b *B
}
func (b *B) NewA() *A {
if b != nil {
return b.a
}
return nil
}
func (c *C) NewB() *B {
if c != nil {
return c.b
}
return nil
}
func main() {
// this will not compile, we can not assign nil without explicit type
// because Go has no idea what it is: a pointer? a string, an array?
//a := nil
//println(a)
var a *int = nil
var b *int = nil
println(a, b, &a, &b)
println(a == b, a == nil)
// true, true
var c *float32 = nil
println(c, &c)
// this wont compile, as we can not compare nil of different type
// println(c == a)
// in Go, an empty struct permits to have call on its method,
// and it wont panic (throw null pointer error like java)
y := C{}
println(y.NewB())
// 0x0
println(y.NewB().NewA())
// 0x0
}