donte1234567 2018-08-29 19:20
浏览 440
已采纳

为什么在golang中仅初始化定义中的一个变量会失败

In calling a library function with the following signature:

func New() (*sql.DB, Sqlmock, error)

like this:

suite.db, suite.mock, err := sqlmock.New() // inside a suite method

I get error

expected identifier on left side of :=

However, when I change to this

var err error
suite.db, suite.mock, err = sqlmock.New()

the error disappears! Why does declaring k < n variables in a := assignment fail?!

  • 写回答

2条回答 默认 最新

  • dongzhouhao4316 2018-08-29 19:49
    关注

    := is not assignment, it is a short variable declaration. Assignment uses e.g. the simple = operator.

    As its name says: it is to declare variables. suite.db is not a variable, it is an expression, more specifically a primary expression; a selector to be exact.

    The short variable declaration uses the syntax:

    ShortVarDecl = IdentifierList ":=" ExpressionList .
    

    Where IdentifierList is:

    IdentifierList = identifier { "," identifier } .
    

    So you must list identifiers. One "exception" to this "declare new variables rule" is the redeclaration:

    Unlike regular variable declarations, a short variable declaration may redeclare variables provided they were originally declared earlier in the same block (or the parameter lists if the block is the function body) with the same type, and at least one of the non-blank variables is new. As a consequence, redeclaration can only appear in a multi-variable short declaration. Redeclaration does not introduce a new variable; it just assigns a new value to the original.

    So you are allowed to use existing variables in a short variable declaration if they were declared in the same block, and you also provide new identifiers (not just existing ones–in which case you would have to use assignment instead).

    See related: Why there are two ways of declaring variables in Go, what's the difference and which to use?

    When you declare err prior and change := to = it works, because the assignment does not require identifiers on the left of the assignment operator, but expressions:

    Assignment = ExpressionList assign_op ExpressionList .
    

    And as detailed above, suite.db is an expression, just like existing variables (identifiers).

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

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵