dqrsceg6279196 2019-05-07 21:43
浏览 91
已采纳

映射键类型和值类型之间的空间的句法含义

An online example of Go I am following has the following syntax for a map type as a parameter in a function:

func (contact *Contact) Validate() (map[string] interface{}, bool) {

What does the space between map[string] and interface mean? I can't find any other examples defining a map with a space there.

  • 写回答

1条回答 默认 最新

  • dongshi1914 2019-05-07 21:58
    关注

    It doesn't mean anything. It doesn't matter if you leave space(s) there or not, the code is the same. Always use gofmt to avoid dis-ambiguity.

    Spec: Tokens:

    Tokens form the vocabulary of the Go language. There are four classes: identifiers, keywords, operators and punctuation, and literals. White space, formed from spaces (U+0020), horizontal tabs (U+0009), carriage returns (U+000D), and newlines (U+000A), is ignored except as it separates tokens that would otherwise combine into a single token. Also, a newline or end of file may trigger the insertion of a semicolon. While breaking the input into tokens, the next token is the longest sequence of characters that form a valid token.

    The map type: map[string]interface{} is made up of tokens, and a white space at the position in question: map[string] interface{} is simply ignored because the tokens it separates (] and interface would not combine into a single token if the space wouldn't be there.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 求解vmware的网络模式问题
  • ¥24 EFS加密后,在同一台电脑解密出错,证书界面找不到对应指纹的证书,未备份证书,求在原电脑解密的方法,可行即采纳
  • ¥15 springboot 3.0 实现Security 6.x版本集成
  • ¥15 PHP-8.1 镜像无法用dockerfile里的CMD命令启动 只能进入容器启动,如何解决?(操作系统-ubuntu)
  • ¥30 请帮我解决一下下面六个代码
  • ¥15 关于资源监视工具的e-care有知道的嘛
  • ¥35 MIMO天线稀疏阵列排布问题
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?