当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang reflect.Copy()用法及代码示例


Go语言提供了运行时反射的内置支持实现,并允许程序借助反射包来操纵任意类型的对象。 Golang中的reflect.Copy()函数用于将源的内容复制到目标中,直到填充了目标或耗尽了源为止。要访问此函数,需要在程序中导入反射包。

用法:
func Copy(dst, src Value) int

参数:此函数采用切片或数组类型的两个参数。 dst和src必须具有相同的元素类型。

返回值:此函数返回复制的元素数。

以下示例说明了以上方法在Golang中的用法:



范例1:

// Golang program to illustrate 
// reflect.Copy() Function  
  
package main 
  
import ( 
    "fmt"
    "reflect"
) 
  
// Main function  
func main() { 
  
    // Source  
    src:= reflect.ValueOf([]int{10, 20, 32}) 
      
    /* make sure the dest space is larger than src */
    // destination  
    dest:= reflect.ValueOf([]int{1, 2, 3}) 
      
    // To copy Copy() function is used 
    // and it returns the number of  
    // elements copied 
    cnt:= reflect.Copy(dest, src) 
    data:= dest.Interface().([]int) 
    data[0] = 100 
      
    // printing the values 
    fmt.Println("Number of element Copied:", cnt) 
    fmt.Println("Source:", src) 
    fmt.Println("destination:", dest) 
}

输出:

Number of element Copied:3
Source:[10 20 32]
destination:[100 20 32]

范例2:

// Golang program to illustrate 
// reflect.Copy() Function  
  
package main 
  
import ( 
    "fmt"
    "reflect"
) 
  
// Struct with two int value 
type temp struct { 
    A0 []int
    A1 []int
} 
  
// Main function  
func main() { 
      
    var val temp 
      
    // Source  
    val.A0 = append(val.A0, []int{1, 2, 3, 
                    4, 5, 6, 7, 8, 9}...) 
      
    // destination  
    val.A1 = append(val.A1, 9, 8, 7, 6) 
      
    // To copy Copy() function is used 
    // and it returns the number of  
    // elements copied 
    var n = reflect.Copy(reflect.ValueOf(val.A0),  
                        reflect.ValueOf(val.A1)) 
      
    // printing the values 
    fmt.Println("Number of element Copied:", n) 
    fmt.Println("{Source, destination}:", val) 
      
}

输出:

Number of element Copied:4
{Source, destination}:{[9 8 7 6 5 6 7 8 9] [9 8 7 6]}



相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 reflect.Copy() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。