Skip to content

xiaoaxe/xiao-gopro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xiao-programming-golang

  1. go格式化参数
一个普通标题 一个普通标题
%d 十进制整数
%x, %o, %b 十六进制,八进制,二进制整数
%f, %g, %e 浮点数: 3.141593 3.141592653589793 3.141593e+00
%t 布尔:true或false
%c 字符(rune) (Unicode码点)
%s 字符串
%q 带双引号的字符串"abc"或带单引号的字符'c'
%v 变量的自然形式(natural format)
%T 变量的类型
%% 字面上的百分号标志(无操作数)
  1. go内置函数
1 2 3 4 5 6 7 8
append close delete panic recover imag real
make new cap copy len complex print println
  1. <Go程序设计语言> 入门,程序结构,简单数据类型,复杂数据类型,函数 方法,接口,协程和管道,并发,包和工具 测试,反射,底层编程

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published