[Help] Can someone please explain to me why this won't work (Reflection)

agolangf · 2017-04-28 04:00:04 · 551 次点击    
这是一个分享于 2017-04-28 04:00:04 的资源,其中的信息可能已经有所发展或是发生改变。

Solved: thanks /u/dilap I was comparing the reflect.Value's, not the actual interfaces in reflect.DeepEqual().

Go Playground

Pastebin Mirror

I just see no reason it won't work:

  1. It checks to make sure that the interface{} is a slice or array.

  2. It ranges over the slice/array and if any element of the slice and the supplied value are deeply equal it returns true.

  3. Otherwise, return false. (Array/Slice does not contain value).

This reflection stuff is hard :pensive:


评论:

dilap:

Here you go:

https://play.golang.org/p/kgAywwVMym

The problem is that DeepEqual wants the interface{}, not a reflect.Value. The reflect.Value themselves are not equal, but the values they represent are equal.

(As an aside, I would advocate not using reflection for something this. It will be slow, and defeats the type safety the language gives you. I would just write separate versions of contains for each type that you need. E.g., in this case, right conatins for []int. If you also need it for strings, then write containsInt and containsString. Sure, it's some copy-paste code duplication, but so what -- it's simple, fast, easy to understand code.)

bkeroack:

"[Reflection] is not for you" -- Rob Pike https://www.youtube.com/watch?v=PAAkCSZUG1c&t=15m29s

Franke123:

Ah, that makes sense! It was comparing the reflect.Value's, not the underlying interfaces. Thank you for the explanation!

As the response to the aside: I was just doing this for fun to learn about reflection, I usually just do a containsInt type thing for something like this. Thank you so much!

dilap:

Happy to help!


入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

551 次点击  
加入收藏 微博
0 回复
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传