sort
पैकेज:
type Interface interface {
Len() int
Less(i, j int) bool
Swap(i, j int)
}
...
type reverse struct {
Interface
}
Interface
संरचना में अनाम इंटरफ़ेस का अर्थ क्या है reverse
?
sort
पैकेज:
type Interface interface {
Len() int
Less(i, j int) bool
Swap(i, j int)
}
...
type reverse struct {
Interface
}
Interface
संरचना में अनाम इंटरफ़ेस का अर्थ क्या है reverse
?
जवाबों:
इस तरह से रिवर्स इम्प्लीमेंट sort.Interface
और हम अन्य सभी को परिभाषित किए बिना एक विशिष्ट विधि को ओवरराइड कर सकते हैं
type reverse struct {
// This embedded Interface permits Reverse to use the methods of
// another Interface implementation.
Interface
}
ध्यान दें कि यहां कैसे (j,i)
इसके बजाय स्वैप होता है (i,j)
और यह reverse
भी reverse
लागू होने के बावजूद संरचना के लिए घोषित एकमात्र तरीका हैsort.Interface
// Less returns the opposite of the embedded implementation's Less method.
func (r reverse) Less(i, j int) bool {
return r.Interface.Less(j, i)
}
इस पद्धति के अंदर जो भी संरचना होती है, हम उसे एक नई reverse
संरचना में बदल देते हैं ।
// Reverse returns the reverse order for data.
func Reverse(data Interface) Interface {
return &reverse{data}
}
वास्तविक मूल्य तब आता है जब आपको लगता है कि यदि यह दृष्टिकोण संभव नहीं था तो आपको क्या करना होगा।
Reverse
विधि जोड़ें sort.Interface
?इस परिवर्तन में से किसी को हज़ारों पैकेजों में कोड की कई और लाइनों की आवश्यकता होगी जो मानक रिवर्स कार्यक्षमता का उपयोग करना चाहते हैं।
reverse
एक प्रकार का सदस्य है Interface
। इस सदस्य के पास इसके तरीके बाहरी संरचना या कॉल करने योग्य हैं।
extend
गैर-अमूर्त उप-वर्गों के विस्तार के लिए? मेरे लिए, यह आंतरिक द्वारा कार्यान्वित मौजूदा लोगों का उपयोग करते हुए केवल कुछ विधियों को ओवरराइड करने का एक आसान तरीका हो सकता है Interface
।
return r.Interface.Less(j, i)
माता-पिता के कार्यान्वयन को बुला रहा है?
sort.Sort(sort.Reverse(sort.IntSlice(example)))
:। मेरे लिए यहाँ दर्द बिंदु: विधि क्रमबद्ध रिवर्स संरचना को बढ़ावा मिलता है, लेकिन कॉल गैर-सदस्य (रिसीवर) शैली है।
ठीक है, स्वीकृत उत्तर ने मुझे समझने में मदद की, लेकिन मैंने एक स्पष्टीकरण पोस्ट करने का फैसला किया, जो मुझे लगता है कि मेरे सोचने के तरीके से बेहतर है।
"प्रभावी गो" एम्बेडेड अन्य इंटरफेस होने इंटरफेस के उदाहरण हैं:
// ReadWriter is the interface that combines the Reader and Writer interfaces.
type ReadWriter interface {
Reader
Writer
}
और एक संरचना जिसमें अन्य संरचनाएं शामिल हैं:
// ReadWriter stores pointers to a Reader and a Writer.
// It implements io.ReadWriter.
type ReadWriter struct {
*Reader // *bufio.Reader
*Writer // *bufio.Writer
}
लेकिन एक इंटरफ़ेस के अंतःस्थापित होने वाली संरचना का कोई उल्लेख नहीं है। sort
पैकेज में यह देखकर मैं उलझन में था :
type Interface interface {
Len() int
Less(i, j int) bool
Swap(i, j int)
}
...
type reverse struct {
Interface
}
लेकिन विचार सरल है। यह लगभग समान है:
type reverse struct {
IntSlice // IntSlice struct attaches the methods of Interface to []int, sorting in increasing order
}
के IntSlice
प्रचार के तरीके reverse
।
और इस:
type reverse struct {
Interface
}
इसका मतलब है कि sort.reverse
इंटरफ़ेस को लागू करने वाले किसी भी संरचना को एम्बेड कर सकते हैं sort.Interface
और इंटरफ़ेस के पास जो भी तरीके हैं, उन्हें बढ़ावा दिया जाएगा reverse
।
sort.Interface
Less(i, j int) bool
अब अधिरोहित किया जा सकता है जो विधि है:
// Less returns the opposite of the embedded implementation's Less method.
func (r reverse) Less(i, j int) bool {
return r.Interface.Less(j, i)
}
समझने में मेरी उलझन
type reverse struct {
Interface
}
क्या मैंने सोचा था कि एक संरचना में निश्चित संरचना होती है, अर्थात निश्चित प्रकार के क्षेत्रों की निश्चित संख्या।
लेकिन निम्नलिखित मुझे गलत साबित करता है:
package main
import "fmt"
// some interface
type Stringer interface {
String() string
}
// a struct that implements Stringer interface
type Struct1 struct {
field1 string
}
func (s Struct1) String() string {
return s.field1
}
// another struct that implements Stringer interface, but has a different set of fields
type Struct2 struct {
field1 []string
dummy bool
}
func (s Struct2) String() string {
return fmt.Sprintf("%v, %v", s.field1, s.dummy)
}
// container that can embedd any struct which implements Stringer interface
type StringerContainer struct {
Stringer
}
func main() {
// the following prints: This is Struct1
fmt.Println(StringerContainer{Struct1{"This is Struct1"}})
// the following prints: [This is Struct1], true
fmt.Println(StringerContainer{Struct2{[]string{"This", "is", "Struct1"}, true}})
// the following does not compile:
// cannot use "This is a type that does not implement Stringer" (type string)
// as type Stringer in field value:
// string does not implement Stringer (missing String method)
fmt.Println(StringerContainer{"This is a type that does not implement Stringer"})
}
बयान
type reverse struct {
Interface
}
आपको reverse
इंटरफ़ेस को लागू करने वाली हर चीज के साथ आरंभ करने में सक्षम बनाता है Interface
। उदाहरण:
&reverse{sort.Intslice([]int{1,2,3})}
इस प्रकार, एम्बेडेड Interface
मान द्वारा कार्यान्वित सभी विधियाँ बाहर की ओर पॉपुलेट हो जाती हैं, जबकि आप अभी भी उनमें से कुछ को ओवरराइड करने में सक्षम हैं reverse
, उदाहरण के Less
लिए छँटाई को उलटने के लिए।
यह वास्तव में होता है जब आप उपयोग करते हैं sort.Reverse
। आप कल्पना के संरचनात्मक अनुभाग में एम्बेड करने के बारे में पढ़ सकते हैं ।
sort.Sort(sort.Reverse(sort.IntSlice(example)))
:। मेरे लिए यहाँ दर्द बिंदु: विधि क्रमबद्ध रिवर्स संरचना को बढ़ावा मिलता है, लेकिन कॉल गैर-सदस्य (रिसीवर) शैली है।
Sort
विधि का प्रचार नहीं किया जाता है, यह कुछ ऐसा लेता है जो संतुष्ट करता है sort.Interface
और रिवर्स एक ऐसी चीज है, यह सिर्फ अपने एम्बेडेड sort.Interface
डेटा के प्रासंगिक तरीकों को बदलता है ताकि परिणामी प्रकार उलट हो।
मैं अपना स्पष्टीकरण भी दूंगा। sort
पैकेज एक unexported प्रकार परिभाषित करता reverse
है, जो एक struct, कि एम्बेड है Interface
।
type reverse struct {
// This embedded Interface permits Reverse to use the methods of
// another Interface implementation.
Interface
}
यह दूसरे इंटरफ़ेस कार्यान्वयन के तरीकों का उपयोग करने के लिए रिवर्स की अनुमति देता है। यह तथाकथित है composition
, जो कि गो की एक शक्तिशाली विशेषता है।
एंबेडेड वैल्यू की Less
विधि को reverse
कॉल करने की Less
विधि है Interface
, लेकिन सूचकांकों के साथ, फ़्लिप परिणाम के क्रम को उलटते हुए।
// Less returns the opposite of the embedded implementation's Less method.
func (r reverse) Less(i, j int) bool {
return r.Interface.Less(j, i)
}
Len
और Swap
अन्य दो विधियां reverse
, मूल रूप से मूल रूप से प्रदान की जाती हैं Interface
क्योंकि यह एक एम्बेडेड क्षेत्र है। निर्यात किया गया Reverse
फ़ंक्शन उस reverse
प्रकार का एक उदाहरण देता है जिसमें मूल Interface
मान होता है।
// Reverse returns the reverse order for data.
func Reverse(data Interface) Interface {
return &reverse{data}
}
Less
विधि को reverse
कॉल करने की Less
विधि Interface
, लेकिन सूचकांकों के फ़्लिप होने के साथ, क्रमबद्ध परिणामों के क्रम को उलट देते हैं।" - यह माता-पिता के कार्यान्वयन को कॉल करने जैसा लगता है।
परीक्षणों में मॉक लिखते समय मुझे यह सुविधा बहुत मददगार लगती है ।
यहाँ इस तरह के एक उदाहरण है:
package main_test
import (
"fmt"
"testing"
)
// Item represents the entity retrieved from the store
// It's not relevant in this example
type Item struct {
First, Last string
}
// Store abstracts the DB store
type Store interface {
Create(string, string) (*Item, error)
GetByID(string) (*Item, error)
Update(*Item) error
HealthCheck() error
Close() error
}
// this is a mock implementing Store interface
type storeMock struct {
Store
// healthy is false by default
healthy bool
}
// HealthCheck is mocked function
func (s *storeMock) HealthCheck() error {
if !s.healthy {
return fmt.Errorf("mock error")
}
return nil
}
// IsHealthy is the tested function
func IsHealthy(s Store) bool {
return s.HealthCheck() == nil
}
func TestIsHealthy(t *testing.T) {
mock := &storeMock{}
if IsHealthy(mock) {
t.Errorf("IsHealthy should return false")
}
mock = &storeMock{healthy: true}
if !IsHealthy(mock) {
t.Errorf("IsHealthy should return true")
}
}
का उपयोग करके:
type storeMock struct {
Store
...
}
सभी Store
तरीकों का मजाक उड़ाने की जरूरत नहीं है । केवल HealthCheck
मजाक किया जा सकता है, क्योंकि TestIsHealthy
परीक्षण में केवल इस पद्धति का उपयोग किया जाता है ।
test
आदेश के परिणाम के नीचे :
$ go test -run '^TestIsHealthy$' ./main_test.go
ok command-line-arguments 0.003s
एक वास्तविक दुनिया उदाहरण उपयोग के इस मामले से एक के परीक्षण जब पा सकते हैं एडब्ल्यूएस एसडीके ।
इसे और अधिक स्पष्ट करने के लिए, यहाँ बदसूरत विकल्प है - Store
इंटरफ़ेस को संतुष्ट करने के लिए न्यूनतम एक को लागू करने की आवश्यकता है :
type storeMock struct {
healthy bool
}
func (s *storeMock) Create(a, b string) (i *Item, err error) {
return
}
func (s *storeMock) GetByID(a string) (i *Item, err error) {
return
}
func (s *storeMock) Update(i *Item) (err error) {
return
}
// HealthCheck is mocked function
func (s *storeMock) HealthCheck() error {
if !s.healthy {
return fmt.Errorf("mock error")
}
return nil
}
func (s *storeMock) Close() (err error) {
return
}