douxi3085 2017-07-18 15:48
浏览 88
已采纳

空接口与通用接口有何不同?

Maybe I'm not fully versed on the power of generics, but how is the empty interface, interface{}, different than a generic, especially if we have the ability to use reflection or type switches? People always mention that Go doesn't have generics, but interface{} seems like it does the job pretty comparable to something like <T> in Java.

  • 写回答

2条回答 默认 最新

  • douxian9706 2017-07-18 16:13
    关注

    If you come from Java, the empty interface (interface{}) is actually closer to working with Object variables in Java than with generics.

    You can assign anything to an interface{} (like you can do with an Object variable in Java).

    But you should then "cast" or "type assert" back if you want to use the actual type you stored there (same that you need to do with Object variables in Java).

    Generics in Java are quite different, since they allow you to keep type checking at compile time. The different is precisely that you don't need to resort to reflection or type switches if you work with Generics.

    You can read more about Java generics here:

    https://docs.oracle.com/javase/tutorial/java/generics/

    And then follow this and the next 2 or 3 steps of the Go tour here for more on how the empty interface works:

    https://tour.golang.org/methods/14

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 关于#python#的问题:自动化测试