博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Go] Returning Multiple Values from a Function in Go
阅读量:5116 次
发布时间:2019-06-13

本文共 618 字,大约阅读时间需要 2 分钟。

Returning multiple values from a function is a common idiom in Go, most often used for returning values along with potential errors. We'll go over how to return multiple values from a function and use those values in our program.

 

// You can edit this code!// Click here and start typing.package mainimport "fmt"func inc (n int) int {    return n + 1}func timesTwo (n int) int {    return n * 2}func plusOneTimestwo (n int) (int, int) {    return inc(n), timesTwo(n)} func main() {    n, m := plusOneTimestwo(3) // assign to variables    fmt.Println(n, m) // 4, 6}

 

转载于:https://www.cnblogs.com/Answer1215/p/10644395.html

你可能感兴趣的文章
autopep8
查看>>
GIT在Linux上的安装和使用简介
查看>>
基于C#编程语言的Mysql常用操作
查看>>
s3c2440实验---定时器
查看>>
MyEclipse10安装SVN插件
查看>>
[转]: 视图和表的区别和联系
查看>>
Regular Experssion
查看>>
图论例题1——NOIP2015信息传递
查看>>
uCOS-II中的任务切换-图解多种任务调度时机与问题
查看>>
CocoaPods的安装和使用那些事(Xcode 7.2,iOS 9.2,Swift)
查看>>
Android 官方新手指导教程
查看>>
幸运转盘v1.0 【附视频】我的Android原创处女作,请支持!
查看>>
UseIIS
查看>>
集合体系
查看>>
vi命令提示:Terminal too wide
查看>>
引用 移植Linux到s3c2410上
查看>>
MySQL5.7开多实例指导
查看>>
[51nod] 1199 Money out of Thin Air #线段树+DFS序
查看>>
poj1201 查分约束系统
查看>>
Red and Black(poj-1979)
查看>>