go * &

    xiaoxiao2022-07-06  170

    type Blog struct {} b1:=&Blog{} // *Blog b2:=*b1 //Blog var b3 *Blog //*Blog b4:=*b3 //Blog fmt.Println(reflect.TypeOf(b1))

     

    最新回复(0)