![uTools_1648471060092.png](https://static.studygolang.com/220328/59d946bd089871c19c4a93c6236a8359.png)
如图,想为HashMap这个struct添加方法,可是在声明泛型上无法声明,请教一下如何解决,个人感觉是在HashMap没有声明导致泛型方法导致无法为方法添加泛型
更多评论
```go
type Entry[K comparable, V comparable] struct {
Key K
Value V
Next *Entry[K, V]
}
type HashMap[K comparable, V comparable] struct {
Table []*Entry[K, V]
}
func (h *HashMap[K, V]) Add(key K, val V) bool {
return false
}
```
#1