乱世@小熊 2008-09-01 08:39 采纳率: 0%
浏览 280
已采纳

什么是反思,为什么它有用?

What is reflection, and why is it useful?

I'm particularly interested in Java, but I assume the principles are the same in any language.

转载于:https://stackoverflow.com/questions/37628/what-is-reflection-and-why-is-it-useful

  • 写回答

20条回答 默认 最新

  • 叼花硬汉 2008-09-01 08:44
    关注

    The name reflection is used to describe code which is able to inspect other code in the same system (or itself).

    For example, say you have an object of an unknown type in Java, and you would like to call a 'doSomething' method on it if one exists. Java's static typing system isn't really designed to support this unless the object conforms to a known interface, but using reflection, your code can look at the object and find out if it has a method called 'doSomething' and then call it if you want to.

    So, to give you a code example of this in Java (imagine the object in question is foo) :

    Method method = foo.getClass().getMethod("doSomething", null);
    method.invoke(foo, null);
    

    One very common use case in Java is the usage with annotations. JUnit 4, for example, will use reflection to look through your classes for methods tagged with the @Test annotation, and will then call them when running the unit test.

    There are some good reflection examples to get you started at http://docs.oracle.com/javase/tutorial/reflect/index.html

    And finally, yes, the concepts are pretty much similar in other statically types languages which support reflection (like C#). In dynamically typed languages, the use case described above is less necessary (since the compiler will allow any method to be called on any object, failing at runtime if it does not exist), but the second case of looking for methods which are marked or work in a certain way is still common.

    Update from a comment:

    The ability to inspect the code in the system and see object types is not reflection, but rather Type Introspection. Reflection is then the ability to make modifications at runtime by making use of introspection. The distinction is necessary here as some languages support introspection, but do not support reflection. One such example is C++

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

报告相同问题?

悬赏问题

  • ¥15 is not in the mmseg::model registry。报错,模型注册表找不到自定义模块。
  • ¥15 安装quartus II18.1时弹出此error,怎么解决?
  • ¥15 keil官网下载psn序列号在哪
  • ¥15 想用adb命令做一个通话软件,播放录音
  • ¥30 Pytorch深度学习服务器跑不通问题解决?
  • ¥15 部分客户订单定位有误的问题
  • ¥15 如何在maya程序中利用python编写领子和褶裥的模型的方法
  • ¥15 Bug traq 数据包 大概什么价
  • ¥15 在anaconda上pytorch和paddle paddle下载报错
  • ¥25 自动填写QQ腾讯文档收集表