码迷,mamicode.com
首页 > 其他好文 > 详细

command-line arguments _ golang

时间:2015-03-31 14:26:21      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:

Command-line arguments are a common way to parameterize execution of programs. For example, go run hello.go uses run and hello.go arguments to the go program

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)
}
[./commonLineArgument a b c d]
[a b c d]
c

总结 : 

  1 : ....

command-line arguments _ golang

标签:

原文地址:http://www.cnblogs.com/jackkiexu/p/4380606.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!