一篇理解什么是CanSet, CanAddr?

什么是可设置( CanSet )
首先需要先明确下,可设置是针对 reflect.Value 的。普通的变量要转变成为 reflect.Value 需要先使用 reflect.ValueOf() 来进行转化。

那么为什么要有这么一个“可设置”的方法呢?比如下面这个例子:

var x float64 = 3.4
v := reflect.ValueOf(x)
fmt.Println(v.CanSet()) // false
golang 里面的所有函数调用都是值复制,所以这里在调用 reflect.ValueOf 的时候,已经复制了一个 x 传递进去了,这里获取到的 v 是一个 x 复制体的 value。那么这个时候,我们就希望知道我能不能通过 v 来设置这里的 x 变量。就需要有个方法来辅助我们做这个事情: CanSet()

但是, 非常明显,由于我们传递的是 x 的一个复制,所以这里根本无法改变 x 的值。这里显示的就是 false。

那么如果我们把 x 的地址传递给里面呢?下面这个例子:

var x float64 = 3.4
v := reflect.ValueOf(&x)
fmt.Println(v.CanSet()) // false
我们将 x 变量的地址传递给 reflect.ValueOf 了。应该是 CanSet 了吧。但是这里却要注意一点,这里的 v 指向的是 x 的指针。所以 CanSet 方法判断的是 x 的指针是否可以设置。指针是肯定不能设置的,所以这里还是返回 false。

那么我们下面需要可以通过这个指针的 value 值来判断的是,这个指针指向的元素是否可以设置,所幸 reflect 提供了 Elem() 方法来获取这个“指针指向的元素”。

var x float64 = 3.4
v := reflect.ValueOf(&x)
fmt.Println(v.Elem().CanSet()) // true
终于返回 true 了。但是这个 Elem() 使用的时候有个前提,这里的 value 必须是指针对象转换的 reflect.Value。(或者是接口对象转换的 reflect.Value)。这个前提不难理解吧,如果是一个 int 类型,它怎么可能有指向的元素呢?所以,使用 Elem 的时候要十分注意这点,因为如果不满足这个前提,Elem 是直接触发 panic 的。

在判断完是否可以设置之后,我们就可以通过 SetXX 系列方法进行对应的设置了。

var x float64 = 3.4
v := reflect.ValueOf(&x)
if v.Elem().CanSet() {
v.Elem().SetFloat(7.1)
}
fmt.Println(x)
更复杂的类型
对于复杂的 slice, map, struct, pointer 等方法,我写了一个例子:

package main

import (
“fmt”
“reflect”
)

type Foo interface {
Name() string
}

type FooStruct struct {
A string
}

func (f FooStruct) Name() string {
return f.A
}

type FooPointer struct {
A string
}

func (f *FooPointer) Name() string {
return f.A
}

func main() {
{
// slice
a := []int{1, 2, 3}
val := reflect.ValueOf(&a)
val.Elem().SetLen(2)
val.Elem().Index(0).SetInt(4)
fmt.Println(a) // [4,2]
}
{
// map
a := map[int]string{
1: “foo1”,
2: “foo2”,
}
val := reflect.ValueOf(&a)
key3 := reflect.ValueOf(3)
val3 := reflect.ValueOf(“foo3”)
val.Elem().SetMapIndex(key3, val3)
fmt.Println(val) // &map[1:foo1 2:foo2 3:foo3]
}
{
// map
a := map[int]string{
1: “foo1”,
2: “foo2”,
}
val := reflect.ValueOf(a)
key3 := reflect.ValueOf(3)
val3 := reflect.ValueOf(“foo3”)
val.SetMapIndex(key3, val3)
fmt.Println(val) // &map[1:foo1 2:foo2 3:foo3]
}
{
// struct
a := FooStruct{}
val := reflect.ValueOf(&a)
val.Elem().FieldByName(“A”).SetString(“foo2”)
fmt.Println(a) // {foo2}
}
{
// pointer
a := &FooPointer{}
val := reflect.ValueOf(a)
val.Elem().FieldByName(“A”).SetString(“foo2”)
fmt.Println(a) //&{foo2}
}
}
上面的例子如果都能理解,那基本上也就理解了 CanSet 的方法了。

特别可以关注下,map,pointer 在修改的时候并不需要传递指针到 reflect.ValueOf 中。因为他们本身就是指针。

所以在调用 reflect.ValueOf 的时候,我们必须心里非常明确,我们要传递的变量的底层结构。比如 map, 实际上传递的是一个指针,我们没有必要再将他指针化了。而 slice, 实际上传递的是一个 SliceHeader 结构,我们在修改 Slice 的时候,必须要传递的是 SliceHeader 的指针。这点往往是需要我们注意的。

CanAddr
在 reflect 包里面可以看到,除了 CanSet 之外,还有一个 CanAddr 方法。它们两个有什么区别呢?

CanAddr 方法和 CanSet 方法不一样的地方在于:对于一些结构体内的私有字段,我们可以获取它的地址,但是不能设置它。

比如下面的例子:

package main

import (
“fmt”
“reflect”
)

type FooStruct struct {
A string
b int
}

func main() {
{
// struct
a := FooStruct{}
val := reflect.ValueOf(&a)
fmt.Println(val.Elem().FieldByName(“b”).CanSet()) // false
fmt.Println(val.Elem().FieldByName(“b”).CanAddr()) // true
}
}

所以,CanAddr 是 CanSet 的必要不充分条件。一个 Value 如果 CanAddr, 不一定 CanSet。但是一个变量如果 CanSet,它一定 CanAddr。

源码
假设我们要实现这个 Value 元素 CanSet 或者 CanAddr,我们大概率会相到使用标记位标记。事实也确实是这样。

我们先看下 Value 的结构:

type Value struct {
typ *rtype
ptr unsafe.Pointer
flag
}

这里要注意的就是,它是一个嵌套结构,嵌套了一个 flag,而这个 flag 本身就是一个 uintptr。

type flag uintptr
这个 flag 非常重要,它既能表达这个 value 的类型,也能表达一些元信息(比如是否可寻址等)。flag虽然是uint类型,但是它用位来标记表示。

首先它需要表示类型,golang 中的类型有27个:

const (
Invalid Kind = iota
Bool
Int
Int8
Int16
Int32
Int64
Uint
Uint8
Uint16
Uint32
Uint64
Uintptr
Float32
Float64
Complex64
Complex128
Array
Chan
Func
Interface
Map
Ptr
Slice
String
Struct
UnsafePointer
)

所以使用5位(2^5-1=63)就足够放这么多类型了。所以 flag 的低5位是结构类型。

第六位 flagStickyRO: 标记是否是结构体内部私有属性
第七位 flagEmbedR0: 标记是否是嵌套结构体内部私有属性
第八位 flagIndir: 标记 value 的ptr是否是保存了一个指针
第九位 flagAddr: 标记这个 value 是否可寻址
第十位 flagMethod: 标记 value 是个匿名函数

20201026181333

其中比较不好理解的就是 flagStickyRO,flagEmbedR0

看下面这个例子:

type FooStruct struct {
A string
b int
}

type BarStruct struct {
FooStruct
}

{
b := BarStruct{}
val := reflect.ValueOf(&b)
c := val.Elem().FieldByName(“b”)
fmt.Println(c.CanAddr())
}
这个例子中的 c 的 flagEmbedR0 标记位就是1了。

所以我们再回去看 CanSet 和 CanAddr 方法

func (v Value) CanAddr() bool {
return v.flag&flagAddr != 0
}

func (v Value) CanSet() bool {
return v.flag&(flagAddr|flagRO) == flagAddr
}

他们的方法就是把 value 的 flag 和 flagAddr 或者 flagRO (flagStickyRO,flagEmbedR0) 做“与”操作。

而他们的区别就是是否判断 flagRO 的两个位。所以他们的不同换句话说就是“判断这个 Value 是否是私有属性”,私有属性是只读的。不能Set。

应用
在开发 collection (https://github.com/jianfengye/collection)库的过程中,我就用到这么一个方法。我希望设计一个方法 func (arr *ObjPointCollection) ToObjs(objs interface{}) error,这个方法能将 ObjPointCollection 中的 objs reflect.Value 设置为参数 objs 中。

func (arr *ObjPointCollection) ToObjs(objs interface{}) error {
arr.mustNotBeBaseType()

objVal := reflect.ValueOf(objs)
if objVal.Elem().CanSet() {
	objVal.Elem().Set(arr.objs)
	return nil
}
return errors.New("element should be can set")

}

使用方法:

func TestObjPointCollection_ToObjs(t *testing.T) {
a1 := &Foo{A: “a1”, B: 1}
a2 := &Foo{A: “a2”, B: 2}
a3 := &Foo{A: “a3”, B: 3}

bArr := []*Foo{}
objColl := NewObjPointCollection([]*Foo{a1, a2, a3})
err := objColl.ToObjs(&bArr)
if err != nil {
	t.Fatal(err)
}
if len(bArr) != 3 {
	t.Fatal("toObjs error len")
}
if bArr[1].A != "a2" {
	t.Fatal("toObjs error copy")
}

}
总结

http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2435
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2434
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2433
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2432
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2431
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2430
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2429
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2428
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2427
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2426
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2425
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2424
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2423
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2422
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2421
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2420
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2419
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2418
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2417
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2416
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2415
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2414
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2413
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2412
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2411
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2410
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2409
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2408
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2407
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2406
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2405
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2404
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2403
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2402
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2401
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2400
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2399
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2398
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2397
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2396
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2395
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2394
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2393
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2392
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2391
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2390
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2389
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2388
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2387
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2386
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2385
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2384
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2383
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2382
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2381
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2380
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2379
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2378
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2377
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2376
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2375
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2374
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2373
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2372
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2371
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2370
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2369
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2368
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2367
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2366
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2365
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2364
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2363
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2362
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2361
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2360
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2359
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2358
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2357
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2356
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2355
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2354
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2353
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2352
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2351
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2350
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2349
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2348
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2347
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2346
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2345
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2344
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2343
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2342
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2341
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2340
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2339
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2338
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2337
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2336
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2335
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2334
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2333
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2332
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2331
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2330
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2329
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2328
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2327
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2326
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2325
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2324
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2323
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2322
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2321
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2320
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2319
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2318
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2317
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2316
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2315
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2314
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2313
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2312
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2311
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2310
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2309
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2308
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2307
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2306
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2305
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2304
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2303
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2302
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2301
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2300
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2299
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2298
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2297
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2296
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2295
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2294
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2293
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2292
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2291
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2290
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2289
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2288
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2287
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2286
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2285
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2284
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2283
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2282
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2281
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2280
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2279
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2278
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2277
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2276
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2275
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2274
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2273
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2272
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2271
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2270
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2269
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2268
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2267
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2266
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2265
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2264
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2263
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2262
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2261
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2260
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2259
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2258
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2257
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2256
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2255
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2254
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2253
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2252
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2251
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2250
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2249
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2248
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2247
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2246
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2245
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2244
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2243
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2242
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2241
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2240
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2239
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2238
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2237
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2236
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2235
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2234
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2233
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2232
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2231
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2230
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2229
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2228
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2227
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2226
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2225
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2224
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2223
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2222
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2221
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2220
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2219
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2218
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2217
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2216
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2215
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2214
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2213
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2212
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2211
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2210
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2209
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2208
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2207
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2206
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2205
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2204
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2203
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2202
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2201
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2200
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2199
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2198
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2197
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2196
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2195
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2194
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2193
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2192
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2191
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2190
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2189
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2188
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2187
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2186
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2185
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2184
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2183
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2182
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2181
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2180
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2179
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2178
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2177
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2176
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2175
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2174
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2173
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2172
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2171
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2170
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2169
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2168
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2167
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2166
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2165
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2164
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2163
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2162
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2161
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2160
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2159
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2158
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2157
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2156
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2155
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2154
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2153
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2152
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2151
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2150
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2149
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2148
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2147
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2146
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2145
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2144
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2143
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2142
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2141
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2140
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2139
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2138
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2137
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2136
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2135
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2134
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2133
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2132
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2131
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2130
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2129
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2128
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2127
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2126
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2125
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2124
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2123
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2122
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2121
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2120
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2119
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2118
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2117
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2116
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2115
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2114
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2113
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2112
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2111
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2110
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2109
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2108
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2107
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2106
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2105
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2104
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2103
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2102
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2101
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=2100
CanAddr 和 CanSet 刚接触的时候是会有一些懵逼,还是需要稍微理解下 reflect.Value 的 flag 就能完全理解了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值