go 的打印
Posted BoyBo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go 的打印相关的知识,希望对你有一定的参考价值。
package main import ( "fmt" "unsafe" ) func main() { // Printf --> 格式化打印
// Println --> 打印后换行
// 打印类型 fmt.Printf(" %T", vo) // 打印整数 fmt.Printf(" %d", vo)
// 打印字符
fmt.Printf(" %c", vo)
//
}
以上是关于go 的打印的主要内容,如果未能解决你的问题,请参考以下文章
解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情