Skip to content

Instantly share code, notes, and snippets.

@davidpaulhunt
Created September 10, 2017 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidpaulhunt/1ddb28fc52408b5e8803ea3c180d1d74 to your computer and use it in GitHub Desktop.
Save davidpaulhunt/1ddb28fc52408b5e8803ea3c180d1d74 to your computer and use it in GitHub Desktop.
My solution to Go's Tour Exercise: Stringers
package main
import "fmt"
type IPAddr [4]byte
// Problem: Add a "String() string" method to IPAddr.
// Solution:
func (ip IPAddr) String() string {
return fmt.Sprintf("%v.%v.%v.%v", ip[0], ip[1], ip[2], ip[3])
}
func main() {
hosts := map[string]IPAddr{
"loopback": {127, 0, 0, 1},
"googleDNS": {8, 8, 8, 8},
}
for name, ip := range hosts {
fmt.Printf("%v: %v\n", name, ip)
}
}
@davidpaulhunt
Copy link
Author

@cveld
Copy link

cveld commented Aug 14, 2022

Is there a way to use strings.Join()? the unfortunate thing is that this function does not automatically cast the byte to a string which it requires.

@MNovruzov
Copy link

Is there a way to use strings.Join()? the unfortunate thing is that this function does not automatically cast the byte to a string which it requires.

func (i IPAddr) String() string {
	a:= make([]string, 0, 4)
	for _, ip := range i {
		a = append(a, strconv.Itoa(int(ip)))
	}
	return strings.Join(a, ".")
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment