Go Example--函数

Posted promenader

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go Example--函数相关的知识,希望对你有一定的参考价值。

package main

import (
    "fmt"
)

func main()  {
    res := plus(1,2)
    fmt.Println("1+2=",res)
}

//定义私有函数,首字母小写。首字母大写,定义公有函数
func plus(a,b int)int  {
    return a+b
}

以上是关于Go Example--函数的主要内容,如果未能解决你的问题,请参考以下文章

Go Example--函数

Go Example--变参函数

go语言从例子开始之Example39.使用函数自定义排序

Go36-3-代码包

Example13.函数多返回值

Go Example--Hello