//版本一 funcmain() { var s, sep string// s,sep 取默认值为空 for i := 1; i < len(os.Args); i++ { s += sep + os.Args[i] // sep = " " } fmt.Println(s) } --- 输入形式 go run 命令行的名字 参数1,参数2,参数3...... 输入:go run main.go hello world guys 输出:hello world guys
版本二
使用for range形式来操作
1 2 3 4 5 6 7 8 9 10 11 12 13
版本二 funcmain() { s, sep := " ", " " for _, arg := range os.Args { s += sep + arg sep = " " } fmt.Println(s) } -- 输入: go run main.go hello world girls 输出: C:\Users\何一川\AppData\Local\Temp\go-build1467222032\b001\exe\main.exe (前面是命令行本身的名字) hello world girls (后面是输入的参数)
版本三 funcmain() { fmt.Println(strings.Join(os.Args[1:], " ")) } 输出命令的名字 funcmain() { fmt.Println(os.Args[0]) } -- 输入:go run main.go hello world boys 输出:hello world boys
// 2. 输出参数的索引和值 , 每行一个 funcmain() { for i, arg := range os.Args { fmt.Println(i, " ", arg) } } -- 输入: go run main.go hello world boys 输出: 0 C:\Users\何一川\AppData\Local\Temp\go-build2135273963\b001\exe\main.exe 1 hello 2 world 3 boys
funcmain() { counts := make(map[string]int) files := os.Args[1:] iflen(files) == 0 { countLines(os.Stdin, counts) // os.stdin是标准输入 } else { for _, arg := range files { f, err := os.Open(arg) //返回的是*os.file是文件噢 if err != nil { fmt.Fprintf(os.Stderr, "dup2:%v\n", err)//标准输出到命令行 // os.stderr就是标准输出错误 continue } countLines(f, counts) f.Close() } } for line, n := range counts { if n > 1 { fmt.Printf("%d\t%s\n", n, line) } } } /* ------------------------------------------------- 首先要在同一目录中 创建一个try.txt 里面的内容是 \n表示换行 okokok\nokokok\nokokok\nokok\nokok\nok\nk go run main.go try.txt 3 okokok 2 okok */ /*---------------------------------------------------- 错误示范 go run main.go hello hello hello he he hh hh hh h dup2:open hello: The system cannot find the file specified. dup2:open hello: The system cannot find the file specified. dup2:open hello: The system cannot find the file specified. dup2:open he: The system cannot find the file specified. dup2:open he: The system cannot find the file specified. dup2:open hh: The system cannot find the file specified. dup2:open hh: The system cannot find the file specified. dup2:open hh: The system cannot find the file specified. dup2:open h: The system cannot find the file specified. *///命令行后要输入文件名而不是字符串
funcmain() { counts := make(map[string]int) for _, filename := range os.Args[1:] { data, err := ioutil.ReadFile(filename) if err != nil { fmt.Fprintf(os.Stderr, "dup3:%v") continue } for _ , line := range strings.Split(string(data),"\n"){ counts[line]++ } } for line ,n:= range counts{ if n>1{ fmt.Printf("%d\t%s\n",n,line) } } }