Ai
1 Star 0 Fork 0

Go/blogcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pointer.go 212 Bytes
一键复制 编辑 原始数据 按行查看 历史
Cc360428 提交于 2020-04-23 22:55 +08:00 . 添加指针与结构体
package main
import (
"github.com/Cc360428/HelpPackage/UtilsHelp/logs"
)
func main() {
intType := new(int)
logs.Info(intType)
var intType1 *int
logs.Info(intType1)
var intType2 int
logs.Info(intType2)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/GolangCodeFile/blogcode.git
git@gitee.com:GolangCodeFile/blogcode.git
GolangCodeFile
blogcode
blogcode
master

搜索帮助