Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1)

Delta Between Two Patch Sets: doc/progs/interface2.go

Issue 5689054: code review 5689054: doc: add The Laws of Reflection article (Closed)
Left Patch Set: diff -r 41905ae6e2d4 https://go.googlecode.com/hg/ Created 13 years, 1 month ago
Right Patch Set: diff -r 7bde1715f288 https://go.googlecode.com/hg/ Created 13 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « doc/progs/interface.go ('k') | src/pkg/reflect/type.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 package main 1 package main
2 2
3 import ( 3 import (
4 "fmt" 4 "fmt"
5 "reflect" 5 "reflect"
6 ) 6 )
7 7
8 func main() { 8 func main() {
9 var x float64 = 3.4 9 var x float64 = 3.4
10 fmt.Println("type:", reflect.TypeOf(x)) 10 fmt.Println("type:", reflect.TypeOf(x))
11 // STOP OMIT 11 // STOP OMIT
12 // TODO(proppy): test output OMIT
12 } 13 }
13 14
14 // STOP main OMIT 15 // STOP main OMIT
15 16
16 func f1() { 17 func f1() {
17 // START f1 OMIT 18 // START f1 OMIT
18 var x float64 = 3.4 19 var x float64 = 3.4
19 v := reflect.ValueOf(x) 20 v := reflect.ValueOf(x)
20 fmt.Println("type:", v.Type()) 21 fmt.Println("type:", v.Type())
21 fmt.Println("kind is float64:", v.Kind() == reflect.Float64) 22 fmt.Println("kind is float64:", v.Kind() == reflect.Float64)
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 f := s.Field(i) 103 f := s.Field(i)
103 fmt.Printf("%d: %s %s = %v\n", i, 104 fmt.Printf("%d: %s %s = %v\n", i,
104 typeOfT.Field(i).Name, f.Type(), f.Interface()) 105 typeOfT.Field(i).Name, f.Type(), f.Interface())
105 } 106 }
106 // START f8b OMIT 107 // START f8b OMIT
107 s.Field(0).SetInt(77) 108 s.Field(0).SetInt(77)
108 s.Field(1).SetString("Sunset Strip") 109 s.Field(1).SetString("Sunset Strip")
109 fmt.Println("t is now", t) 110 fmt.Println("t is now", t)
110 // STOP OMIT 111 // STOP OMIT
111 } 112 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b