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 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?
  • ¥15 关于#vue.js#的问题:修改用户信息功能图片无法回显,数据库中只存了一张图片(相关搜索:字符串)
  • ¥15 texstudio的问题,