dongzhan0624 2019-04-12 23:44 采纳率: 0%
浏览 281
已采纳

为什么在GO init()方法中出现错误?

So I understand that in go, init() is a special method that can be used to initialize an object in a package. When I try to use this technique, I get an error that the variable is declared and not used. For example:

package fizzbuzz

var foo string

func init() {
    foo := "bar"
}

It seems to me that most of the time variables that you put in this method will not be used local to int(), so that is just fine. What am I missing?

  • 写回答

3条回答 默认 最新

  • dshw124502 2019-04-12 23:51
    关注

    That just creates a local variable named "foo" inside the method. You need to assign the string to the already declared var at the module scope via foo = "bar".

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

报告相同问题?

悬赏问题

  • ¥20 mpich安装完成后出问题
  • ¥15 stm32循迹小车代码问题
  • ¥15 输入一堆单词,使其去重输出
  • ¥15 qc代码,修改和添加东西
  • ¥50 Unity的粒子系统使用shadergraph(内置管线)制作的一个顶点偏移shader,但是粒子模型移动时,顶点也会偏移
  • ¥15 如何用python处理excel的数据(极值标准化)
  • ¥15 三向应力状态求剪应力
  • ¥15 jupyter notebook如何添加libGL.so.1库
  • ¥20 easyPoi能否实现下拉多选或者复选框
  • ¥15 网桥在转发帧时,会变帧的源地址和目的地址吗?