Created
August 18, 2024 09:09
-
-
Save mortymacs/177f155d00fc1b40ab52b437ff600423 to your computer and use it in GitHub Desktop.
Go decorator pattern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// You can edit this code! | |
// Click here and start typing. | |
package main | |
import "fmt" | |
type IFeature interface { | |
GetPrice() int | |
} | |
type BasicMaintenance struct{} | |
func (BasicMaintenance) GetPrice() int { | |
featureCost := 5 | |
return featureCost | |
} | |
type EmailFeature struct { | |
BaseFeature IFeature | |
} | |
func (e *EmailFeature) GetPrice() int { | |
featureCost := 10 | |
if e.BaseFeature != nil { | |
return e.BaseFeature.GetPrice() + featureCost | |
} | |
return featureCost | |
} | |
type ChatFeature struct { | |
BaseFeature IFeature | |
} | |
func (c *ChatFeature) GetPrice() int { | |
featureCost := 5 | |
if c.BaseFeature != nil { | |
return c.BaseFeature.GetPrice() + featureCost | |
} | |
return featureCost | |
} | |
type CalendarFeature struct { | |
BaseFeature IFeature | |
} | |
func (c *CalendarFeature) GetPrice() int { | |
featureCost := 15 | |
if c.BaseFeature != nil { | |
return c.BaseFeature.GetPrice() + featureCost | |
} | |
return featureCost | |
} | |
func main() { | |
f := CalendarFeature{ | |
BaseFeature: &EmailFeature{ | |
BaseFeature: &BasicMaintenance{}, | |
}, | |
} | |
fmt.Println("Total price:", f.GetPrice()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment