Golang中Structure变量中Field的访问地址

How to access the pointer or the address of a FIELD within a STRUCTURE in GOLANG. I have the address or pointer of the whole structure variable but can not properly access the address of the field inside structure. So far I have tried Reflection but seems breaking somewhere. Any help is highly appreciated.

For example,

package main

import (
    "fmt"
)

type S struct{ F1, F2 int }

func main() {
    s := new(S)
    f1, f2 := &s.F1, &s.F2
    fmt.Printf("%p %p %p
", s, f1, f2)
}

Output:

0x1040a128 0x1040a128 0x1040a12c