码迷,mamicode.com
首页 > 其他好文 > 详细

golang的指针到string,string到指针的转换

时间:2014-07-09 15:33:31      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   cti   io   代码   

由于某个需求,需要如题的转换,废话不多说,直接贴代码了,其实挺丑了,备用了

func (this *Server) socketParserHandler(client *genTcpServer.Client, fullData []byte) {

    fmt.Println("original data is", client)
    strPointerHex := fmt.Sprintf("%p", unsafe.Pointer(client))
    fmt.Println("connection is", strPointerHex)

    strPointerInt := fmt.Sprintf("%d", unsafe.Pointer(client))
    fmt.Println("connection is", strPointerInt)

    i, _ := strconv.ParseInt(strPointerInt, 10, 0)

    var pointer *genTcpServer.Client
    pointer = *(**genTcpServer.Client)(unsafe.Pointer(&i))
    fmt.Println("connection pointer is", pointer)

    debugMsg := fmt.Sprintf("%p", unsafe.Pointer(pointer))
    fmt.Println("debugMsg is", debugMsg)

 

golang的指针到string,string到指针的转换,布布扣,bubuko.com

golang的指针到string,string到指针的转换

标签:style   blog   color   cti   io   代码   

原文地址:http://www.cnblogs.com/ziyouchutuwenwu/p/3832135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!