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

Go used as value问题

时间:2019-01-25 17:36:58      阅读:3049      评论:0      收藏:0      [点我收藏+]

标签:return   round   use   strong   练习   class   返回值   col   UNC   

  练习Go变参时遇到一个报错:used as value 代码如下:

 

// 错误代码
func myfunc(arg ...int) {
	for _, n := range arg {
		fmt.Printf("And the number is: %d\n", n)
	}
}
func main() {
	fmt.Printf(myfunc(1, 2, 3, 4, 5))
}

// 报错 myfunc(1, 2, 3, 4, 5) used as value


// 正确代码
func myfunc(arg ...int) {
	for _, n := range arg {
		fmt.Printf("And the number is: %d\n", n)
	}
}
func main() {
	myfunc(1, 2, 3, 4, 5)
}
// 结果:
//And the number is: 1
//And the number is: 2
//And the number is: 3
//And the number is: 4
//And the number is: 5


// 或者 正确代码
func myfunc(arg ...int) int {
	m := 0
	for _, n := range arg {
		m += n
	}
	return m
}
func main() {
	fmt.Printf("m = %d", myfunc(1, 2, 3, 4, 5))
}
// 结果:m = 15

 

  从上面代码可以看出myfunc()函数是没有返回值的,直接调用就可以,不需要使用fmt包或者给返回值进行输出。

 

Go used as value问题

标签:return   round   use   strong   练习   class   返回值   col   UNC   

原文地址:https://www.cnblogs.com/NolaLi/p/10320378.html

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