Go 通过反射的reflect设置实际变量的值

这篇博客的目的是介绍如何用反射对象修改时间变量的值。要达到上述目的,最基本的操作如下:

package main

import (
    "fmt"
    "reflect"
)

func main() {
    var num float64 = 3.14
    fmt.Println("num is : ", num)
    //下面操作指针获取num地址,记得加上&取地址
    pointer := reflect.ValueOf(&num)
    newValue := pointer.Elem()

    fmt.Println("type: ", newValue.Type())
    fmt.Println("can set or not:", newValue.CanSet())

    //重新赋值
    newValue.SetFloat(6.28)
    fmt.Println(num)
}

运行结果如下:

num is :  3.14
type:  float64
can set or not: true
6.28

你可能感兴趣的:(go反射)