上一页 1 ··· 142 143 144 145 146 147 148 149 150 ··· 257 下一页
摘要: package mainimport ( "fmt")type G struct { Str string Int int}func (g G) Getstr() (string,error) { //var err error if g.Str == ""{ fmt.Println("is a e 阅读全文
posted @ 2021-12-19 08:03 技术颜良 阅读(64) 评论(0) 推荐(0)
摘要: C++支持多态,可以通过重载和模板实现多态,其中模板类这个功能我感觉很方便,比如想写一个栈类型,可以通过模板类,只定义一个类,就能让这个栈支持int,double,char等多种数据类型。 go语言呢,不支持多态,自然也就没有模板这个概念,但是没有关系,go语言的设计者自然知道多态的好处,只是觉得重 阅读全文
posted @ 2021-12-18 16:53 技术颜良 阅读(202) 评论(0) 推荐(0)
摘要: 取消后运行: 或者 ttt:= T(“fsdfsd”) package mainimport "fmt"type Func func(string) stringtype Int inttype Testinterfacer interface { ADDstr(str string) string 阅读全文
posted @ 2021-12-18 16:44 技术颜良 阅读(61) 评论(0) 推荐(0)
摘要: 完全二进制安装 calico v3 calico v3 官方所有教程中均推荐使用 docker 方式运行,使用 calicoctl 配合 docker 运行会帮你提供好运行依赖和自动配置等。而如果使用二进制方式运行 calico 则需要手动安装依赖和配置各个组件。 It automatically 阅读全文
posted @ 2021-12-17 17:29 技术颜良 阅读(1433) 评论(0) 推荐(0)
摘要: http://www.manoner.com/post/GoLand/Go%E8%AF%AD%E8%A8%80%E7%9A%84type-func%E7%94%A8%E6%B3%95/ | 阅读 在 Go 语言中,type 可以定义任何自定义的类型 比如熟悉的:type dog struct{},t 阅读全文
posted @ 2021-12-17 11:10 技术颜良 阅读(1744) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-12-17 10:12 技术颜良 阅读(36) 评论(0) 推荐(0)
摘要: https://chai2010.cn/advanced-go-programming-book/ch4-rpc/ch4-05-grpc-hack.html https://pandaychen.github.io/2020/05/30/KRATOS-INTERCEPTOR-ANALYSIS/ 阅读全文
posted @ 2021-12-16 15:59 技术颜良 阅读(45) 评论(0) 推荐(0)
摘要: https://www.elephdev.com/index.php/golang/285.html?ref=addtabs&lang=zh-cn 使用 WebSockets 时,一个程序必须充当服务器。 但是可以有许多其他程序作为客户端。在本文中,我们将创建一个服务器和一个客户端 WebSocke 阅读全文
posted @ 2021-12-16 09:41 技术颜良 阅读(479) 评论(0) 推荐(0)
摘要: etcd是kubernetes集群极为重要的一块服务,存储了kubernetes集群所有的数据信息,如Namespace、Pod、Service、路由等状态信息。如果etcd集群发生灾难或者 etcd 集群数据丢失,都会影响k8s集群数据的恢复。因此,通过备份etcd数据来实现kubernetes集 阅读全文
posted @ 2021-12-15 17:37 技术颜良 阅读(298) 评论(0) 推荐(0)
摘要: Spring Cloud Stream 使用延迟消息实现定时任务(RabbitMQ) 程序猿DD发布于 2019-01-04 🔥🔥🔥 SegmentFault D-Day Online 论道云原生与微服务,快来报名 >>> 应用场景 我们在使用一些开源调度系统(比如:elastic-job等) 阅读全文
posted @ 2021-12-15 10:48 技术颜良 阅读(981) 评论(0) 推荐(0)
上一页 1 ··· 142 143 144 145 146 147 148 149 150 ··· 257 下一页