Golang 内置函数

Golang 提供了一些内建函数,这些函数可以直接使用,无需额外的包导入。以下是一些常见的 Golang 内建函数:

  1. len:用于获取数组、切片、字符串、Map 的长度。



str := "Hello, World!"
length := len(str)
fmt.Println(length) // 输出:13
  1. cap:用于获取数组、切片、Map、channel 的容量。



slice := make([]int, 10)
capacity := cap(slice)
fmt.Println(capacity) // 输出:10
  1. newmakenew 用于分配内存,返回类型的指针;make 用于内存分配并初始化,返回初始化后的(引用)类型值。



// new
p := new(int)  
fmt.Println(*p) // 输出:0
 
// make
s := make([]int, 10)
fmt.Println(s) // 输出:[0 0 0 0 0 0 0 0 0 0]
  1. append:用于添加元素到数组、切片中。



slice := []string{"Hello", "World"}
slice = append(slice, "!" )
fmt.Println(slice) // 输出:[Hello World !]
  1. copy:用于复制数组、切片中的元素。



src := []int{1, 2, 3, 4, 5}
dst := []int{10, 20, 30, 40, 50}
n := copy(dst, src)
fmt.Println(n) // 输出:5
fmt.Println(dst) // 输出:[1 2 3 4 5]
  1. delete:用于从 Map 中删除键值对。



m := map[string]int{"one": 1, "two": 2}
delete(m, "one")
fmt.Println(m) // 输出:map[two:2]
  1. panicrecoverpanic 用于引发一个异常,recover 用于恢复程序的正常运行。



func main() {
    defer func() {
        if r := recover(); r != nil {
            fmt.Print("Recovered in main", r)
        }
    }()
    panic("crash")
}
  1. printprintln:用于打印输出。



print("Hello, ")
println("World!") // 输出:Hello, World!
  1. realimag:用于获取复数的实部和虚部。



c := 3.14 + 1.23i
realPart := real(c)
imagPart := imag(c)
fmt.Println(realPart) // 输出:3.14
fmt.Println(imagPart) // 输出:1.23
  1. close:用于关闭 channel。



c := make(chan int)
go func() {
    c <- 1
}()
close(c)

这些内建函数提供了 Golang 编程的基本功能,可以根据需要选择使用。

最后修改于:2024年08月27日 18:56

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日