forked from AlexanderGrom/go-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_method.go
56 lines (45 loc) · 1.67 KB
/
template_method.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Паттерн Шаблонный метод (Template Method)
//
// На самом деле этот шаблон основывается на Абстрактном Классе и Полиморфизме.
// Но т.к. ничего этого в Go нет, будет применено встраивание.
// Хотя по правилам, это паттерн уровня класса.
package template_method
// Тип QuotesInterface, описывает интерфейс установки разных кавычек
type QuotesInterface interface {
Open() string
Close() string
}
// Тип Quotes, рeализует Template Method
type Quotes struct {
QuotesInterface
}
// Template Method
func (self *Quotes) Quotes(str string) string {
return self.Open() + str + self.Close()
}
// Конструктор
func NewQuotes(qt QuotesInterface) *Quotes {
return &Quotes{qt}
}
// Тип FrenchQuotes, рeализует обрамление строки Французскими кавычками (Ёлочками)
type FrenchQuotes struct {
}
// Установка открывающей кавычки
func (self *FrenchQuotes) Open() string {
return "«"
}
// Установка закрывающей кавычки
func (self *FrenchQuotes) Close() string {
return "»"
}
// Тип GermanQuotes, рeализует обрамление строки Немецкими кавычками (Лапками)
type GermanQuotes struct {
}
// Установка открывающей кавычки
func (self *GermanQuotes) Open() string {
return "„"
}
// Установка закрывающей кавычки
func (self *GermanQuotes) Close() string {
return "“"
}