V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
linvon
V2EX  ›  问与答

Golang 关于语法的一点疑惑

  •  
  •   linvon · 2020-05-26 10:08:29 +08:00 · 1398 次点击
    这是一个创建于 1421 天前的主题,其中的信息可能已经有所发展或是发生改变。
    
            type Int struct {
    		v int
    	}
    
    
    // 不合法
    	for i := Int{v:0}; i.v < 10; i.v ++ {}
    
    
    // 合法 1
            i := Int{v:0}
            for ; i.v < 10; i.v ++ {}
    // 合法 2
            for i := 0; i < 10; i++ {}
    
    

    也是网上冲浪的时候看到有人抛出的这段代码,循环体的初始化条件中不能直接赋值结构体使用。如果说赋值结构体是无返回值表达式的话,那为什么直接赋值 0 可以?
    没有理解到为什么会有这种限制,有没有老哥指点一二?感觉自己在学习过程中漏掉了什么东西

    5 条回复    2020-05-26 10:59:48 +08:00
    elvodn
        1
    elvodn  
       2020-05-26 10:23:58 +08:00   ❤️ 1
    for i := (Int{v:0}); i.v < 10; i.v++ {}
    linvon
        2
    linvon  
    OP
       2020-05-26 10:30:12 +08:00
    @elvodn 感谢
    elvodn
        3
    elvodn  
       2020-05-26 10:30:45 +08:00   ❤️ 3
    rayhy
        4
    rayhy  
       2020-05-26 10:49:32 +08:00
    不是特别理解楼上说的原因,是指这条规则吗?

    To allow complex statements to occupy a single line, a semicolon may be omitted before a closing ")" or "}".

    怎么理解呢?
    elvodn
        5
    elvodn  
       2020-05-26 10:59:48 +08:00   ❤️ 2
    @rayhy
    @szzhiyang
    @ScepterZ
    @linvon

    我理解错了,原因是这一条 https://golang.org/ref/spec#Composite_literals
    A parsing ambiguity arises when a composite literal using the TypeName form of the LiteralType appears as an operand between the keyword and the opening brace of the block of an "if", "for", or "switch" statement, and the composite literal is not enclosed in parentheses, square brackets, or curly braces. In this rare case, the opening brace of the literal is erroneously parsed as the one introducing the block of statements. To resolve the ambiguity, the composite literal must appear within parentheses.
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3311 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 14:03 · PVG 22:03 · LAX 07:03 · JFK 10:03
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.