您现在的位置是:网站首页> Go语言

关于Go的结构

摘要

关于Go的结构


1.jpg


所有结构内的变量要导出必须字母头为大写

如:
type ReturnST strut{
BOK bool //返回成功与否
Command string  //命令
M_ReturnOBJ interface{}//消息体
SMsg  string //消息
}


Top