Implementiamo l’interfaccia sort.Interface implementando
le funzioni Len , Less e Swap al fine di poter usare
la funzione Sort generica dal package sort .
Len e Swap saranno generalmente simili indipendentemente
dal tipo, mentre Less conterrà la logica per l’ordinamento
personalizzato. Nel nostro caso, dato che vogliamo ordinare
in baso alla lunghezza, utilizzeremo len(s[i]) e
len(s[j]) per effettuare il confronto.
|
func (s ByLength) Len() int {
return len(s)
}
func (s ByLength) Swap(i, j int) {
s[i], s[j] = s[j], s[i]
}
func (s ByLength) Less(i, j int) bool {
return len(s[i]) < len(s[j])
}
|
Dopo aver dichiarato queste funzioni, è possibile
effettuare un ordinamento personalizzato tramite un cast
dello slice fruits al tipo ByLength sul quale chiameremo
la funzione sort.Sort .
|
func main() {
fruits := []string{"pesca", "banana", "kiwi"}
sort.Sort(ByLength(fruits))
fmt.Println(fruits)
}
|