英文: What is best pattern to reuse Go interface without tripping cyclic dependencies 问题 我有一个简单的包声明,其中...
在Repository-Service-Controller模式中导出的类型
英文: Exported types in Repository-Service-Controller Pattern 问题 如果你已经了解了Repository-Service-Controller...
REST API 使用哪种设计模式?
英文: REST API uses which design pattern 问题 在创建Spring Boot应用程序的REST API时,我们遵循哪种设计模式? 微服务使用哪种设计模式? 英文: ...
在不同的上下文中,术语“command”是否有不同的含义?
英文: Does the term "command" have various meanings depending on the context? 问题 我是一名初级开发者,对...
Golang中的适配器模式
英文: Adaptor pattern in golang 问题 尝试在Golang中创建适配器模式,不确定我在哪里出错了。我的client.go显示了一个错误c.broker.placeOrder ...
如何知道符合Go错误的变量名称
英文: How to know variable name adhering to go error 问题 在使用Go语言时,有一种模式用于定义错误并以一种(对我来说)非常特殊的方式处理它们。通常,错...
Go: Enforce fields of object passed into function?
英文: Go: Enforce fields of object passed into function? 问题 我正在进行一个项目,其中我有两个结构体,并且我希望能够对它们执行相同的逻辑,而不需要...
在Go语言中改进多态性和装饰器模式
英文: Improving Polymorphism and Decorator pattern in Go 问题 我正在阅读一本设计模式的书,并尝试将这些模式应用到Go语言中,以此来学习两者。 目前...
在Golang中,返回接口的时间和原因是什么?
英文: When and why to return an interface in Golang? 问题 示例代码: type IClient interface { UploadFile(sour...
在Go语言中,可以通过在结构体的自定义构造函数中访问内部参数来实现。
英文: Is there a way to access an internal parameter in a custom constructor from struct in Go? 问题 我想访...
17