Go 語言反射(Reflect)

2022-04-24 15:48 更新

Go語言提供了一種機(jī)制,在不知道具體類型的情況下,可以用反射來更新變量值,查看變量類型

Typeof

Typeof返回接口中保存的值得類型,Typeof(nil)會返回nil

實例

package main

import (
	"fmt"
	"reflect"
)

func main() {
	var booknum float32 = 6
	var isbook bool = true
	bookauthor := "o2fo.com"
	bookdetail := make(map[string]string)
	bookdetail["Go語言教程"]="o2fo.com"
	fmt.Println(reflect.TypeOf(booknum))
	fmt.Println(reflect.TypeOf(isbook))
	fmt.Println(reflect.TypeOf(bookauthor))
	fmt.Println(reflect.TypeOf(bookdetail))
}

以上代碼執(zhí)行結(jié)果如下

float32
bool
string
map[string]string

ValueOf

ValueOf返回一個初始化為interface接口保管的具體值得Value,ValueOf(nil)返回Value零值

通過反射獲取值

實例

package main

import (
	"fmt"
	"reflect"
)

func main() {
	var booknum float32 = 6
	var isbook bool = true
	bookauthor := "o2fo.com"
	bookdetail := make(map[string]string)
	bookdetail["Go語言教程"]="o2fo.com"
	fmt.Println(reflect.ValueOf(booknum))
	fmt.Println(reflect.ValueOf(isbook))
	fmt.Println(reflect.ValueOf(bookauthor))
	fmt.Println(reflect.ValueOf(bookdetail))
}

以上代碼執(zhí)行結(jié)果如下

6
true
o2fo.com
map[Go語言教程:o2fo.com]

通過反射設(shè)置值

package main

import (
	"fmt"
	"reflect"
)

func reflectsetvalue1(x interface{}){
	value:=reflect.ValueOf(x)
	if value.Kind() == reflect.String{
		value.SetString("歡迎來到W3Cschool")
	}
} 
func reflectsetvalue2(x interface{}){
	value:=reflect.ValueOf(x)
    // 反射中使用Elem()方法獲取指針?biāo)赶虻闹?	if value.Elem().Kind() == reflect.String{
		value.Elem().SetString("歡迎來到W3Cschool")
	}
} 

func main() {
	address := "o2fo.com"
	// reflectsetvalue1(address) 
    // 反射修改值必須通過傳遞變量地址來修改。若函數(shù)傳遞的參數(shù)是值拷貝,則會發(fā)生下述錯誤。
    // panic: reflect: reflect.Value.SetString using unaddressable value
	reflectsetvalue2(&address)
	fmt.Println(address)
}

以上代碼執(zhí)行結(jié)果如下

歡迎來到W3Cschool

使用建議

1、大量使用反射的代碼通常會變得難以理解

2、反射的性能低下,基于反射的代碼會比正常的代碼運行速度慢一到兩個數(shù)量級

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號