上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: SliceOpr切片常用操作 切片取值范围 切片的取值范围为了插入做准备 func TestTimeNowUnix(t *testing.T) { var s []int s = make([]int, 0) s = append(s, 1, 2, 3, 4) fmt.Println(s[1:2]) 阅读全文
posted @ 2020-12-13 15:48 maob 阅读(141) 评论(0) 推荐(0) 编辑
摘要: TimeTimer The Timer type represents a single event. When the Timer expires, the current time will be sent on C, unless the Timer was created by AfterF 阅读全文
posted @ 2020-12-13 15:34 maob 阅读(235) 评论(0) 推荐(0) 编辑
摘要: StructTransmit值传递和引用传递 代码 package strcurt_ptr import "fmt" type Item0 struct { Name0 string } type Item1 struct { Item0 Name1 string } type Item2 stru 阅读全文
posted @ 2020-12-13 13:56 maob 阅读(78) 评论(0) 推荐(0) 编辑
摘要: ReflectBase overview Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. The typical use is 阅读全文
posted @ 2020-12-12 22:16 maob 阅读(61) 评论(0) 推荐(0) 编辑
摘要: HandleBase句柄的5种写法 package main import ( "encoding/json" "errors" "fmt" "log" "net/http" ) // 路由的第一种形式 type Router1 struct {} func (r1 *Router1) ServeH 阅读全文
posted @ 2020-12-12 20:22 maob 阅读(177) 评论(0) 推荐(0) 编辑
摘要: ContextBase Context的API和主要的两种函数 type Context A Context carries a deadline, a cancellation signal, and other values across API boundaries. Context's me 阅读全文
posted @ 2020-12-12 20:19 maob 阅读(183) 评论(0) 推荐(0) 编辑
摘要: BasegoSort 直接传引用类型就可以,不用地址 stand_sort.go package stand_sort import ( "fmt" "sort" ) type Person struct { Name string Age int } func (p Person) String( 阅读全文
posted @ 2020-12-12 20:11 maob 阅读(60) 评论(0) 推荐(0) 编辑
摘要: PrototypePra原型_设计订单保存 通过克隆实现新实例 需求 有一个文件保存系统 订单分为两个,一个是个人订单,一个是公司订单 保存订单时候,需要按照订单分类,数量大于1000的就要重新拆分 没涉及模式的实现 // 实现个人订单超过1000的拆分 // 公司名单也是 package main 阅读全文
posted @ 2020-12-12 20:08 maob 阅读(99) 评论(0) 推荐(0) 编辑
摘要: DesignPattenTemplate模板模式 通过把不变行为搬移到超类,去除子类中的重复代码,提供了一个很好的代码复用平台 实际案例1 下载场景 UML图 实现代码 package templatemethod import "fmt" type Downloader interface { D 阅读全文
posted @ 2020-12-12 20:06 maob 阅读(92) 评论(0) 推荐(0) 编辑
摘要: DesignPattenStrategy策略模式 定义一系列算法,让这些算法在运行时可以互换,使得分离算法,符合开闭原则。 UML Context(环境类):负责使用算法策略,其中维持了一个抽象策略类的引用实例 Strategy(抽象策略类):所有策略类的父类,为所支持的策略算法声明了抽象方法,可以 阅读全文
posted @ 2020-12-12 20:02 maob 阅读(61) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页