conn.(*dbConnection).ID 括号中的这种用户没懂,请指点

simongaoo · 2017-08-17 09:59:52 · 1329 次点击 · 大约8小时之前 开始浏览    置顶
这是一个创建于 2017-08-17 09:59:52 的主题,其中的信息可能已经有所发展或是发生改变。

// performQueries tests the resource pool of connections.
func performQueries(query int, p *pool.Pool) {
    // Acquire a connection from the pool.
    conn, err := p.Acquire()
    if err != nil {
        log.Println(err)
        return
    }

    // Release the connection back to the pool.
    defer p.Release(conn)

    // Wait to simulate a query response.
    time.Sleep(time.Duration(rand.Intn(1000)) * time.Millisecond)
    log.Printf("Query: QID[%d] CID[%d]\n", query, conn.(*dbConnection).ID)
}

以上为go in action 中的一段,请教conn.(*dbConnection).ID怎么理解?

我能看出是什么意思,但是没看到官方解释。


有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1329 次点击  
加入收藏 微博
6 回复  |  直到 2017-08-17 12:42:41
polaris
polaris · #1 · 8年之前

conn 是接口,conn.(*dbConnection) 是类型断言。官方文档:http://docs.studygolang.com/ref/spec#Type_assertions

注:发布帖子时,底下那么大的预览效果,格式乱了也没看到么?

simongaoo
simongaoo · #2 · 8年之前

thx polaris。

simongaoo
simongaoo · #3 · 8年之前
polarispolaris #1 回复

conn 是接口,conn.(*dbConnection) 是类型断言。官方文档:http://docs.studygolang.com/ref/spec#Type_assertions 注:发布帖子时,底下那么大的预览效果,格式乱了也没看到么?

所以,更好的写法应该是:

dbConn, ok := conn.(*dbConnection)

if ok {

    log.Printf("Query: QID[%d] CID[%d]\n", query, dbConn.ID)
}

:blush:

怎么格式化这里面的代码?

polaris
polaris · #4 · 8年之前

请了解 markdown 语法,在发布界面右侧有简单教程啊!

simongaoo
simongaoo · #5 · 8年之前
if dbConn, ok := conn.(*dbConnection); ok {
    log.Printf("Query: QID[%d] CID[%d]\n", query, dbConn.ID)
}

:smiley:

simongaoo
simongaoo · #6 · 8年之前
if dbConn, ok := conn.(*dbConnection); ok {
    log.Printf("Query: QID[%d] CID[%d]\n", query, dbConn.ID)
}
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传