dongyumiao5210 2018-12-01 22:26
浏览 259
已采纳

“ i。(string)”在golang语法中实际上意味着什么? [重复]

This question already has an answer here:

I recently started looking for functional go examples and I found this function:

mapper := func (i interface{}) interface{} {
    return strings.ToUpper(i.(string))
}
Map(mapper, New(“milu”, “rantanplan”))
//[“MILU”, “RANTANPLAN”]

Now in this function, as you can see the return value of mapper is: strings.ToUpper(i.(string)).

But, what does this i.(string) syntax mean? I tried searching, but didn't find anything particularly useful.

</div>
  • 写回答

2条回答 默认 最新

  • dongshushen4392 2018-12-01 22:29
    关注

    i.(string) casts (or attempts at least) i (type interface{}) to type string. I say attempts because say i is an int instead, this will panic. If that doesn't sound great to you, then you could change the syntax to

    x, ok := i.(string)
    

    In this case if i is not a string, then ok will be false and the code won't panic.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部