Go函数实例

Go函数实例

函数是Go语言编程的核心,这里将通过以下几个不同的例子来了解和学习函数的使用。

所有的示例代码,都放在 F:\worksp\golang 目录下。安装Go编程环境请参考:/tutorial/detail-5562.html

这里实现一个函数,它接受两个int类型参数并将它们的和作为一个int返回。
在Go编程中需要显式返回,即它不会自动返回最后一个表达式的值。

当有多个相同类型的连续参数时,可以省略类型参数的类型名称,直到声明该类型的最后一个参数。

使用name(args)调用函数,正如所期望的调用方式那样。

Go函数还有几个其他功能。一个是多个返回值,在接下来实现中我们来看看。

functions.go的完整代码如下所示 -

package main

import "fmt"

// Here's a function that takes two `int`s and returns
// their sum as an `int`.
func plus(a int, b int) int {

    // Go requires explicit returns, i.e. it won't
    // automatically return the value of the last
    // expression.
    return a + b
}

// When you have multiple consecutive parameters of
// the same type, you may omit the type name for the
// like-typed parameters up to the final parameter that
// declares the type.
func plusPlus(a, b, c int) int {
    return a + b + c
}

func main() {

    // Call a function just as you'd expect, with
    // `name(args)`.
    res := plus(1, 2)
    fmt.Println("1+2 =", res)

    res = plusPlus(1, 2, 3)
    fmt.Println("1+2+3 =", res)
}

执行上面代码,将得到以下输出结果 -

F:\worksp\golang>go run functions.go
1+2 = 3
1+2+3 = 6

目录