https://github.com/xdpcs/go-design-pattern
go设计模式
https://github.com/xdpcs/go-design-pattern
Last synced: 4 months ago
JSON representation
go设计模式
- Host: GitHub
- URL: https://github.com/xdpcs/go-design-pattern
- Owner: XdpCs
- License: mit
- Created: 2023-03-03T13:32:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T02:12:11.000Z (about 2 years ago)
- Last Synced: 2025-07-30T13:42:15.059Z (11 months ago)
- Language: Go
- Homepage: https://xdpcs.github.io/go-design-pattern/
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go 设计模式






## SOLID 原则
- [单一职责原则](./SOLID/01.Single-Responsibility-Principle/README.md) [Go](https://github.com/XdpCs/go-design-pattern/blob/master/SOLID/01.Single-Responsibility-Principle/go/main.go)
- [开闭原则](./SOLID/02.Pen-Closed-Principle/README.md) [Go](https://github.com/XdpCs/go-design-pattern/blob/master/SOLID/02.Pen-Closed-Principle/go/main.go)
- [里氏替换原则](./SOLID/03.Liskov-Substitution-Principle/README.md) [Go](https://github.com/XdpCs/go-design-pattern/blob/master/SOLID/03.Liskov-Substitution-Principle/go/main.go)
- [接口隔离原则](./SOLID/04.Interface-Segregation-Principle/README.md) [Go](https://github.com/XdpCs/go-design-pattern/blob/master/SOLID/04.Interface-Segregation-Principle/go/main.go)
- [依赖倒转原则](./SOLID/05.Dependency-Inversion-Principle/README.md) [Go](https://github.com/XdpCs/go-design-pattern/blob/master/SOLID/05.Dependency-Inversion-Principle/go/main.go)