Go实例: Command-Line Arguments

Malinda ·
更新时间:2024-11-10
· 261 次阅读

package main import ( "fmt" "os" ) func main() { argsWithProg := os.Args argsWithoutProg := os.Args[1:] arg := os.Args[3] fmt.Println(argsWithProg) fmt.Println(argsWithoutProg) fmt.Println(arg) }$ go build command-line-arguments.go $ ./command-line-arguments a b c d [./command-line-arguments a b c d] [a b c d] c



GO实例 GO line

需要 登录 后方可回复, 如果你还没有账号请 注册新账号