上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 43 下一页
摘要: 做个笔记,没有连数据库,没有存redis,只是demo package main import ( "errors" "fmt" "log" "net/http" "strings" "time" "github.com/dgrijalva/jwt-go/v4" "github.com/gin-go 阅读全文
posted @ 2024-08-23 17:05 朝阳1 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1. 布尔类型 可比较 2. 整型 可比较 3. 浮点数 可比较 4. 复数 可比较 5. 字串 可比较 6. 指针值 可比较 var num1, num2 int num1 = 8 num2 = 8 pt1 := &num1 pt2 := &num1 pt3 := &num2 //定义一个空指针 阅读全文
posted @ 2024-08-23 16:05 朝阳1 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 参考 https://juejin.cn/post/6847902215575699464 package main import ( "fmt" "math/rand" "strconv" "strings" "time" ) type hand uint const ( NilHand hand 阅读全文
posted @ 2024-08-23 14:36 朝阳1 阅读(6) 评论(0) 推荐(0) 编辑
摘要: runtime包 package main import ( "bytes" "log" "os" "runtime" "strconv" "time" ) func getGoroutineID() uint64 { b := make([]byte, 64) b = b[:runtime.Sta 阅读全文
posted @ 2024-08-23 09:55 朝阳1 阅读(11) 评论(0) 推荐(0) 编辑
摘要: docker-compose安装RocketMQ docker-compose.yml version: '3.8' services: namesrv: image: apache/rocketmq:5.3.0 container_name: rmqnamesrv ports: - 9876:98 阅读全文
posted @ 2024-08-23 09:38 朝阳1 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 以下代码有一些是通过gpt生成的 普通模式 package main import "fmt" type Ints []int func (i Ints) Iterator() *Iterator { return &Iterator{ data: i, index: 0, } } type Ite 阅读全文
posted @ 2024-08-22 11:45 朝阳1 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 2~10为数字本身,A为1,J为11,Q为12,K为13,而大、小王为 0 ,可以看成任意数字。A 不能视为 14 go func isStraight(nums []int) bool { if len(nums) < 5 { return false // 数组长度小于5,不能构成顺子 } so 阅读全文
posted @ 2024-08-20 15:46 朝阳1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 文档官网 https://www.golancet.cn 安装 使用 go1.18 及以上版本的用户,建议安装 v2.x.x。 因为 v2.x.x 应用 go1.18 的泛型重写了大部分函数。 go get github.com/duke-git/lancet/v2 使用 go1.18 以下版本的用 阅读全文
posted @ 2024-08-20 09:30 朝阳1 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Lock.go package lock import ( "context" "crypto/tls" "crypto/x509" "fmt" "go.etcd.io/etcd/clientv3" "io" "io/ioutil" "sync" "time" ) type Mutex struct 阅读全文
posted @ 2024-08-17 16:25 朝阳1 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 这种是市面上比较常用的,但是需要数据库存储。或者自己写一套加解密的方法,根据code进行解密,效率更高 直接上代码 <?php function shortUrl($url) { $charset = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijkl 阅读全文
posted @ 2024-08-17 14:52 朝阳1 阅读(41) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 43 下一页