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

Go by Example: Functions

时间:2014-12-06 18:19:02      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:go语言   go   golang   函数   function   

函数(Function)是Go的核心,我们将会通过多个不同的例子来学习函数。

package main

import "fmt"

    // 这个函数输入两个int型数据,计算并返回int型的和
func plus(a int, b int) int {
    // Go需要使用return语句显式地返回值
    // 它不会自动返回函数中最后一个表达式的值。
    return a + b
}

func main() {
    // 正如你所想的那样,通过“name(args)”来调用函数
    res := plus(1, 2)
    fmt.Println("1+2 =", res)
}

输出

$ go run functions.go 
1+2 = 3

Go语言的函数还有其他一些功能。其中一个就是下一章节将会学习的多值返回。


下一个例子: Go by Example: Multiple Return Values。


英文原文



Go by Example: Functions

标签:go语言   go   golang   函数   function   

原文地址:http://blog.csdn.net/codemanship/article/details/41776871

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