Last active
July 29, 2023 11:01
-
-
Save M0nteCarl0/a64eddcd8c912cf88b54224a2ec25103 to your computer and use it in GitHub Desktop.
Example implentation map of interface for Golang
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
package main | |
import ( | |
"fmt" | |
) | |
type MyMap map[string]interface{} | |
func (m MyMap) Set(key string, value interface{}) { | |
m[key] = value | |
} | |
func (m MyMap) Get(key string) (interface{}, bool) { | |
value, ok := m[key] | |
return value, ok | |
} | |
func (m MyMap) Delete(key string) { | |
delete(m, key) | |
} | |
func (m MyMap) Print() { | |
for key, value := range m { | |
fmt.Printf("%s: %v\n", key, value) | |
} | |
} | |
func main() { | |
m := make(MyMap) | |
m.Set("name", "John") | |
m.Set("age", 30) | |
m.Set("isStudent", true) | |
value, ok := m.Get("name") | |
if ok { | |
fmt.Println("Value:", value) | |
} | |
m.Print() | |
m.Delete("age") | |
m.Print() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment