go学习笔记--第一个go程序

Go学习笔记

第一个go 程序

hello_world.go

package main

import "fmt"

func main() {
        fmt Println("Hello World")
}
#直接运行
go run hello_world.go
#先编译再运行
go build hello_world.go   #build 之后会生成一个二进制hello_world
./hello_world

基本程序结构

package main   // 表明代码所在的模块(包)
import "fmt"  // 引入“代码” 依赖
// 功能实现
func main() {
	fmt.Println("Hello World")
}

应用程序入口


 1. 必须是 main 包:package main 
 2. 必须是 main 方法:func main() 
 3. 文件名不一定是 main.go

退出返回值
与其他主要编程语言的差异


 1. Go 中 main 函数不支持任何返回值   
 2. 通过 os.Exit 来返回状态

获取命令行参数
与其他主要编程语言的差异


 1. main() 函数不支持传入参数 
 2. 在程序中直接通过 os.Args 来获取命令行参数

package main

import (
        "fmt"
        "os"
)

func main() {
        if len(os.Args) > 1 {
                fmt.Println("Hello World!",os.Args[1])
        }
}
go run hello_world.go zhen
Hello World! zhen
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值