青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 51 下一页

2021年9月30日

19_Go基础(array)

摘要: package main import ( "fmt" ) func main() { // 初始化方式1 var a1 = [3]bool{} fmt.Println(a1) // 初始化方式2 a2 := [...]int{1, 2, 3} fmt.Println(a2) // 初始化方式3 a 阅读全文

posted @ 2021-09-30 17:14 芦苇の 阅读(33) 评论(0) 推荐(0) 编辑

18_Go基础(goto)

摘要: package main import ( "fmt" "strconv" ) func logger(s string) { fmt.Println(s) } func main() { for i := 0; i < 10; i++ { for j := 'A'; j < 'Z'; j++ { 阅读全文

posted @ 2021-09-30 17:13 芦苇の 阅读(90) 评论(0) 推荐(0) 编辑

17_Go基础(switch)

摘要: package main import "fmt" func logger(s string) { fmt.Println(s) } func main() { tag := 2 // 用法1 switch tag { case 1: logger("a") case 2, 4: logger("b 阅读全文

posted @ 2021-09-30 17:12 芦苇の 阅读(29) 评论(0) 推荐(0) 编辑

15_Go基础(string)

摘要: package main import ( "fmt" "strings" ) func main() { s1 := "你好china" s2 := "\"D:\\Go\\src\\p1\"" // 双斜杠有一个是转义 // 1. 字符串长度 fmt.Println(len(s1)) // 11 阅读全文

posted @ 2021-09-30 17:11 芦苇の 阅读(25) 评论(0) 推荐(0) 编辑

16_Go基础(process-control)

摘要: package main import ( "fmt" "math/rand" "time" ) func main() { for i := 0; i < 5; i++ { r := rand.New(rand.NewSource(time.Now().UnixNano())) randNum : 阅读全文

posted @ 2021-09-30 17:11 芦苇の 阅读(22) 评论(0) 推荐(0) 编辑

14_Go基础(float)

摘要: package main import "fmt" func main() { n1 := 1.2345 fmt.Printf("%T\n", n1) // float64, go 默认小数都是 float64 类型 } 阅读全文

posted @ 2021-09-30 17:10 芦苇の 阅读(28) 评论(0) 推荐(0) 编辑

13_Go基础(binary)

摘要: package main import "fmt" func main() { n1 := 255 fmt.Printf("%d\n", n1) // 255 fmt.Printf("%b\n", n1) // 11111111 fmt.Printf("%o\n", n1) // 377 fmt.P 阅读全文

posted @ 2021-09-30 17:09 芦苇の 阅读(27) 评论(0) 推荐(0) 编辑

12_Go基础(iota)

摘要: package main import ( "fmt" ) const ( b1 = iota c1 = 100 b2 = iota b3 ) const ( d1, d2 = iota + 1, iota + 2 // 只有一行,iota 不自增 d3, d4 = iota + 1, iota + 阅读全文

posted @ 2021-09-30 17:08 芦苇の 阅读(32) 评论(0) 推荐(0) 编辑

2021年9月29日

11_Go 自定义快捷代码块

摘要: Crtl + Shift + P>snippets 配置用户自定义代码块go => go.json { "pln": { "prefix": "pln", "body": "fmt.Println($0)", "description": "fmt.Println()" }, "plf": { "p 阅读全文

posted @ 2021-09-29 15:50 芦苇の 阅读(56) 评论(0) 推荐(0) 编辑

2021年9月24日

005_后端--jq+ajax $.ajax post用法

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-09-24 00:36 芦苇の 阅读(23) 评论(0) 推荐(0) 编辑

上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 51 下一页