down00112 2019-03-29 14:04
浏览 8

该类型别名语法是否为Go? [关闭]

I did not get the below syntax in ../go/src/net/http/server.go:

var defaultServeMux ServeMux

where

ServeMux is a struct

type ServeMux struct {
    mu    sync.RWMutex
    m    map[string]muxEntry
    es    []muxEntry
    hosts    bool
}

In GO, type aliasing looks like type T1 = T2.

Is the above syntax(used for defaultServeMux) anything to do with type aliasing?

  • 写回答

1条回答 默认 最新

  • dsfew215211 2019-03-29 14:08
    关注

    The line you quoted is just the declaration of a variable of type ServeMux which is the alternative, explicit variant of definition by assignment. For example these two statements are equivalent:

    var foo ServeMux = ServeMux{}
    foo := ServeMux{}
    

    In both cases foo has the type ServeMux.

    You can read about the variable declaration syntax here. In the global variable scope the := shorthand is not allowed which is why the var syntax is used to define global variables (as is the case in your example).

    Type "aliases", i.e. the declaration of new types based on existing types has a different syntax and has nothing to do with this.

    评论

报告相同问题?

悬赏问题

  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 unity第一人称射击小游戏,有demo,在原脚本的基础上进行修改以达到要求
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line