-
Notifications
You must be signed in to change notification settings - Fork 4
/
04_json_marshal_arrays.go
58 lines (48 loc) · 1.46 KB
/
04_json_marshal_arrays.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
58
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Třináctá část
// Vývoj síťových aplikací v programovacím jazyku Go (práce s JSONem a rastrovými obrázky)
// https://www.root.cz/clanky/vyvoj-sitovych-aplikaci-v-programovacim-jazyku-go-prace-s-jsonem-a-rastrovymi-obrazky/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů ze třinácté části:
// https://github.com/tisnik/go-root/blob/master/article_13/README.md
//
// Demonstrační příklad číslo 4:
// Marshalling jednorozměrných i dvourozměrných polí do JSONu
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_13/04_json_marshal_arrays.html
package main
import (
"encoding/json"
"fmt"
)
func main() {
var a1 [10]byte
var a2 [10]int32
a3 := [10]int32{1, 10, 2, 9, 3, 8, 4, 7, 5, 6}
a4 := []string{"www", "root", "cz"}
a5 := []interface{}{1, "root", 3.1415, true, []int{1, 2, 3, 4}}
matice := [4][3]float32{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9},
{0, -1, 0},
}
a1JSON, _ := json.Marshal(a1)
fmt.Println(string(a1JSON))
a2JSON, _ := json.Marshal(a2)
fmt.Println(string(a2JSON))
a3JSON, _ := json.Marshal(a3)
fmt.Println(string(a3JSON))
a4JSON, _ := json.Marshal(a4)
fmt.Println(string(a4JSON))
a5JSON, _ := json.Marshal(a5)
fmt.Println(string(a5JSON))
maticeJSON, _ := json.Marshal(matice)
fmt.Println(string(maticeJSON))
}