- 博客(6)
- 收藏
- 关注
原创 shell去除字符串中数字的方法
这些方法中,string是你要处理的字符串。以上示例代码中的输出将会是"HelloWorld",其中所有的数字都被移除了。你可以根据需要选择适合你的情况的方法。
2023-06-06 15:20:22
1271
1
原创 Golang interface互相转换
1、Golang的interface类型的值之间互相转换1.1、下面来一段代码package mainimport "fmt"type IParent interface { Sing()}type ISon interface { IParent Play()}type Son struct {}type Parent struct {}func (s *Son) Play() { fmt.Println("play")}func (s *Son) Sin
2022-02-27 16:11:07
1982
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人