Golang常量实例分析教程(2)

func (this State) String()string{
 switch this {
  case Running :
    return "Running"
  case Stopped :
    return "Stopped"
  default :
    return "Unknow"
 }
}

func main(){
 state := Stopped
 
 fmt.Println("state", state)
}

运行...

state Stopped

Golang常量实例分析教程

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/e95f0f88abdb002c6044db704c52b683.html