上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 44 下一页
摘要: git log --decorate --all --oneline --graph 2.6.9快速解决冲突 1.安装beyond compare 2.在git中配置 git config --local merge.tool bc3i 设置merge.tool 别名bc3 git config - 阅读全文
posted @ 2022-03-31 00:01 ty1539 阅读(568) 评论(0) 推荐(0) 编辑
摘要: Python schedules.crontab方法代码示例 https://vimsky.com/examples/detail/python-method-celery.schedules.crontab.html 阅读全文
posted @ 2022-03-30 10:42 ty1539 阅读(36) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/gokublog/p/15347785.html 阅读全文
posted @ 2022-03-28 11:44 ty1539 阅读(24) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) type Animal interface { Talk() Eat() Name() string } type Dog struct { } func (d Dog) Talk() { fmt.Println("汪汪汪") } func 阅读全文
posted @ 2022-03-27 23:17 ty1539 阅读(106) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) func test(a interface{}) { // s := a.(int) // a.(int)接口转为int 如果不是这个类型,那就会panic,加入ok接收异常,就可以避免panic s, ok := a.(int) if o 阅读全文
posted @ 2022-03-27 19:12 ty1539 阅读(38) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "os" ) func main(){ var buf [67]byte // 定义一个66个字节的buf数组,输入你是个王八蛋死你祖宗十八代去掉你大爷的国相,多余2个字节 os.Stdin.Read(buf[:]) // 读取终端的输入放入到 阅读全文
posted @ 2022-03-27 18:42 ty1539 阅读(1380) 评论(0) 推荐(0) 编辑
摘要: tcp服务端 package main import ( "fmt" "net" "os" ) func errFunc(err error, info string) { if err != nil { fmt.Println("这是错误>>",info, err) //return //返回当前 阅读全文
posted @ 2022-03-27 16:05 ty1539 阅读(156) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "reflect" ) type Monster struct{ Name string `json: "name"` Age int `json: "monster_age"` Score float32 Sex string } //方法, 阅读全文
posted @ 2022-03-27 00:30 ty1539 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 常量常量介绍 常量使用const定义 常量在定义的时候,必须初始化 常量不能修改 常量只能修饰bool、数值类型(int,float系列)、string类型 语法:const identifier [type] = value 举例说明,看看下面的写法是否正确: const name = "tom" 阅读全文
posted @ 2022-03-26 22:52 ty1539 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 此处的变量reflect.TypeOf, reflect.ValueOf, 返回的 其实表示的不是真正的int,它是 reflect.TypeOf(b) 返回的type Type interface, 接口,里面包含了很多方法 不能 var a int = 10, var a1 rType=20 p 阅读全文
posted @ 2022-03-26 21:21 ty1539 阅读(32) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 44 下一页