内容简介:注:本文是对在Slice中添加元素:可以使用“Go”内置函数
注:本文是对 golang-101-hacks 中文翻译。
在Slice中添加元素:可以使用“Go”内置函数 append
Go
has a built-in append
function which add elements in the slice:
func append(slice []Type, elems ...Type) []Type
但是如果需要增加到最前面,可以使用copy函数,如下
But how if we want to the "prepend" effect? Maybe we should use copy
function. E.g.:
package main
import "fmt"
func main() {
var s []int = []int{1, 2}
fmt.Println(s)
s1 := make([]int, len(s) + 1)
s1[0] = 0
copy(s1[1:], s)
s = s1
fmt.Println(s)
}
运行结果
The result is like this:
[1 2] [0 1 2]
上面的代码看上去不是很完美,一种友好的写法如下
But the above code looks ugly and cumbersome, so an elegant implementation maybe here:
s = append([]int{0}, s...)
顺便补充一点,我尝试写了一个通用的前置增加函数
BTW, I also have tried to write a "general-purpose" prepend:
func Prepend(v interface{}, slice []interface{}) []interface{}{
return append([]interface{}{v}, slice...)
}
但是由于 []T
不能直接转换成 []interface{}
(请参考 https://golang.org/doc/faq#convert_slice_of_interface
,因此也就是玩玩啦,没什么实际意义。
But since []T
can't convert to an []interface{}
directly (please refer https://golang.org/doc/faq#convert_slice_of_interface
, it is just a toy, not useful.
参考::
以上所述就是小编给大家介绍的《golang-101-hacks(9)——追加元素》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 巡云轻论坛系统 4.1 发布,增加追加提问功能
- 诺基亚芬兰裁员180人,但会继续追加5G投入
- 如何对集合对象求合计,然后追加在该集合对象中
- Haskell:使用O(1)追加和O(1)索引的Datastruture?
- CSS 基础:块级元素、行内元素、替换元素、非替换元素
- CSS 技巧篇(六):display设置元素为行内元素时,元素之间存在间隙问题
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
深入浅出MFC (第二版)
侯俊杰 / 华中科技大学出版社 / 2001-1 / 80.00元
《深入浅出MFC》分为四大篇。第一篇提出学习MFC程序设计之前的必要基础,包括Widnows程序的基本观念以及C++的高阶议题。“学前基础”是相当主观的认定,但作者是甚于自己的学习经验以及教学经验,其挑选应该颇具说服力。第二篇介绍Visual C++整合环境开发工具。此篇只是提纲挈领,并不企图取代Visual C++使用手册;然而对于软件使用的老手,此篇或已足以帮助掌握Visual C++整合环境......一起来看看 《深入浅出MFC (第二版)》 这本书的介绍吧!