1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00
This commit is contained in:
nitesh420 2018-08-19 19:25:19 +00:00 committed by GitHub
commit f50cf51944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 55 additions and 1 deletions

View file

@ -29,7 +29,7 @@ A curated collection of idiomatic design & application patterns for Go language.
| [Composite](/structural/composite.md) | Encapsulates and provides access to a number of different objects | ✘ |
| [Decorator](/structural/decorator.md) | Adds behavior to an object, statically or dynamically | ✔ |
| [Facade](/structural/facade.md) | Uses one type as an API to a number of others | ✘ |
| [Flyweight](/structural/flyweight.md) | Reuses existing instances of objects with similar/identical state to minimize resource usage | |
| [Flyweight](/structural/flyweight.go) | Reuses existing instances of objects with similar/identical state to minimize resource usage | |
| [Proxy](/structural/proxy.md) | Provides a surrogate for an object to control it's actions | ✔ |
## Behavioral Patterns

54
structural/flyweight.go Normal file
View file

@ -0,0 +1,54 @@
package main
import (
"fmt"
"math/rand"
)
type Shape interface {
draw()
}
type Circle struct{
x,y,r int
color string
}
func (c Circle)draw() {
fmt.Println("Draw circle..here",c.x,c.y,c.color)
}
type ShapeFactory struct{
shapeMap map[string]Shape
colorArray []string
}
func NewShapeFactory()ShapeFactory{
shapeFactoryVar:=ShapeFactory{}
shapeFactoryVar.shapeMap=make(map[string]Shape)
return shapeFactoryVar
}
func(s ShapeFactory)getShape(color string) Shape{
if circleVar,ok:=s.shapeMap[color];ok {
fmt.Println("Cirle object of "+color +" already created..")
return circleVar
}
circleVar:=Circle{}
circleVar.x=rand.Intn(100)
circleVar.y=rand.Intn(100)
circleVar.color=color
s.shapeMap[circleVar.color] =circleVar
return circleVar
}
func main(){
var shapevar Shape
shapeFactoryVar:=NewShapeFactory()
colorArray:=[]string{"red","yellow","blue","black","orange","green","purple","white"}
for i:=1;i<=10;i++ {
color:=colorArray[rand.Intn(len(colorArray)-1)]
shapevar =shapeFactoryVar.getShape(color)
shapevar.draw()
}
}