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

Go内建函数copy

时间:2015-08-30 17:26:05      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

Go内建函数copy:

func copy(dst, src []Type) int

用于将源slice的数据(第二个参数),复制到目标slice(第一个参数)。

返回值为拷贝了的数据个数,是len(dst)和len(src)中的最小值。

看代码:

package main

 

import (

"fmt"

)

 

func main() {

var a = []int{0, 1, 2, 3, 4, 5, 6, 7}

var s = make([]int, 6)

 

//源长度为8,目标为6,只会复制前6个

n1 := copy(s, a)

fmt.Println("s - ", s)

fmt.Println("n1 - ", n1)

 

//源长为7,目标为6,复制索引1到6

n2 := copy(s, a[1:])

fmt.Println("s - ", s)

fmt.Println("n2 - ", n2)

 

//源长为8-5=3,只会复制3个值,目标中的后三个值不会变

n3 := copy(s, a[5:])

fmt.Println("s - ", s)

fmt.Println("n3 - ", n3)

 

//将源中的索引5,6,7复制到目标中的索引3,4,5

n4 := copy(s[3:], a[5:])

fmt.Println("s - ", s)

fmt.Println("n4 - ", n4)

}

 

 

执行结果:

s - [0 1 2 3 4 5]

n1 - 6

s - [1 2 3 4 5 6]

n2 - 6

s - [5 6 7 4 5 6]

n3 - 3

s - [5 6 7 5 6 7]

n4 - 3

Go内建函数copy

标签:

原文地址:http://www.cnblogs.com/baiyuxiong/p/4770978.html

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