编程的基本框架函数在编程中的作用面向对象编程[video title="5分钟通俗讲解面向对象编程 " url="https://www.bilibili.com/video/BV1pq4y1t7nA?vd_source=db2dd9049ac3b424...
阅读全文...
go 自定义error
package main
import (
"fmt"
"os"
"time"
)
type PathError struct {
path str...
阅读全文...
阅读全文...
for range 注意的点(坑)
package main
import "fmt"
func main() {
a := [3]int{0, 1, 2}
fmt.Printf("遍历前第一个元素内存地址:%p\n", &...
阅读全文...
阅读全文...