Type Information


The need for RTTI

  • Because it is a dynamically bound method, the proper behavior will occur even though it is called through a generic reference.
  • That’s what RTTI means: At run time, the type of an object is identified.
  • You want the bulk of your code to know as little as possible about specific types of objects, and to just deal with the general representation of a family of objects.
  • With RTTI, you can ask a reference the exact type that it’s referring to, and thus select and isolate special cases.

The Class object

  • How type information is represented at run time? This is accomplished through a special kind of object called the Class object, which contains information about the class.
  • Java performs its RTTI using the Class object, even if you’re doing something like a cast.
  • Each time you write and compile a new class, a single Class object is also created.
  • This happens when the program makes the first reference to a static member of that class.
  • The constructor is also a static method of a class. Therefore, creating a new object of that class using the new operator also counts as a reference to a static member of the class.
  • A Java program isn’t completely loaded before it begins, but instead pieces of it are loaded when necessary.
  • Once the Class object for that type is in memory, it is used to create all objects of that type.
  • Each Class object is loaded only when it’s needed, and the static initialization is performed upon class loading.
  • Anytime you want to use type information at run time, you must first get a reference to the appropriate Class object.
  • With the Class object you can find out just about everything you want to know about a type.
  • You can discover an object’s entire class hierarchy at run time.
  • The newlnstance( ) method of Class is a way to implement a "virtual constructor".

Class Literals

  • There’s a standard field called TYPE that exists for each of the primitive wrapper classes. The TYPE field produces a reference to the Class object for the associated primitive type.
  • Creating a reference to a Class object using ".class" doesn’t automatically initialize the Class object.
  • Effectively, initialization is "as lazy as possible."
  • Class.forName( ) initializes the class immediately in order to produce the Class reference.

Generic class references

  • A Class reference really does indicate the exact type of what it’s pointing to: an object of the class Class.
  • To constrain the type of Class object that the Class reference is pointing to, using the generic syntax.
  • The ordinary class reference can be reassigned to any other Class object, whereas the generic class reference can only be assigned to its declared type.
  • Integer is inherited from Number. But the Integer Class object is not a subclass of the Number Class object.
  • The benefit of Class<?> is that it indicates that you aren’t just using a non-specific class reference by accident, or out of ignorance.
  • In order to create a Class reference that is constrained to a type or any subtype, you combine the wildcard with the extends keyword to create a bound.
  • The reason for adding the generic syntax to Class references is only to provide compile-time type checking.
  • In any event, because of the vagueness, the return value of up.newlnstance( ) is not a precise type, but just an Object.

New cast syntax

  • The cast( ) method takes the argument object and casts it to the type of the Class reference.
  • The new casting syntax is useful for situations where you can’t just use an ordinary cast.

Checking before a cast

  • It won’t allow you to perform a downcast assignment without using an explicit cast, to tell it that you have extra information that allows you to know that it is a particular type.
  • The keyword instanceof tells you if an object is an instance of a particular type.
  • It’s important to use instanceof before a downcast when you don’t have other information that tells you the type of the object.
  • There’s a rather narrow restriction on instanceof: You can compare it to a named type only, and not to a Class object.

A dynamic instanceof

  • The isInstance( ) method has eliminated the need for the instanceof expressions.

Registered factories

  • The only way to reuse the name Factory as seen above is by qualifying typeinfo.factory.Factory.

instanceof vs. Class equivalence

  • instanceof and islnstance( ) produce exactly the same results, as do equals( ) and ==.
  • If you compare the actual Class objects using ==, there is no concern with inheritance—it’s either the exact type or it isn’t.

Reflection: runtime class information

  • The type must be known at compile time in order for you to detect it using RTTI and to do something useful with the information. the compiler must know about all the classes you’re working with.
  • Suppose you’re given a reference to an object that’s not in your program space. In fact, the class of the object isn’t even available to your program at compile time.
  • This design-time configuration requires that any component be instantiable, that it exposes parts of itself, and that it allows its properties to be read and modified.
  • Reflection provides the mechanism to detect the available methods and produce the method names.
  • Another compelling motivation for discovering class information at run time is to provide the ability to create and execute objects on remote platforms, across a network.
  • Objects of these types are created by the JVM at run time to represent the corresponding member in the unknown class.
  • The class information for anonymous objects can be completely determined at run time, and nothing need be known at compile time.
  • The JVM will simply look at the object and see that it belongs to a particular class (just like ordinary RTTI). Before anything can be done with it, the Class object must be loaded.
  • The true difference between RTTI and reflection is that with RTTI, the compiler opens and examines the .class file at compile time.
  • With reflection, the .class file is unavailable at compile time.

A class method extractor

  • Reflection is in the language to support other Java features, such as object serialization and JavaBeans.
  • There are times when it’s quite useful to dynamically extract information about a class.
  • There is enough support to actually set up and make a method call on an object that’s totally unknown at compile time.

Dynamic proxies

  • A proxy typically acts as a go-between.
  • A proxy can be helpful anytime you’d like to separate extra operations into a different place than the "real object," and especially when you want to easily change from not using the extra operations to using them, and vice versa.
  • All calls made on a dynamic proxy are redirected to a single invocation handler, which has the job of discovering what the call is and deciding what to do about it.
  • The constructor for the invocation handler is usually given the reference to the "real" object so that it can forward requests once it performs its intermediary task.

Null Objects

  • It is useful to introduce the idea of a Null Object that will accept messages for the object that it’s "standing in" for, but will return values indicating that no "real" object is actually there.
  • The place where Null Objects seem to be most useful is "closer to the data," with objects that represent entities in the problem space.
  • In general, the Null Object will be a Singleton, so here it is created as a static final instance.
  • If you are working with interfaces instead of concrete classes, it’s possible to use a DynamicProxy to automatically create the Null Objects.

Mock Objects & Stubs

  • Both Mock Object and Stub pretend to be live objects that deliver real information, rather than being a more intelligent placeholder for null, as Null Object is.

Interfaces and type information

  • The fact that you always have a back door into a class may allow you to solve certain types of problems that could otherwise be difficult or impossible, and the benefits of reflection in general are undeniable.

Thinking in Java——笔记(14)的更多相关文章

  1. Java笔记14:泛型初探

    一.泛型简介 泛型是从Java SE 1.5开始出现的新特性,泛型的本质是参数化类型,也就是说所操作的数据类型被指定为一个参数.这种参数类型可以用在类.接口和方法的创建中,分别称为泛型类.泛型接口.泛 ...

  2. java笔记14之private

    private:        1 是一个权限修饰符        2 可以修饰成员变量和成员方法        被其修饰的成员只能在本类中被访问 class Demo { //int num = 1 ...

  3. JAVA自学笔记14

    JAVA自学笔记14 1.正则表达式 1)是指一个用来描述或者匹配一系列符合某个句法规则的字符串的单个字符串.其实就是一种规则.有自己的特殊应用 2)组成规则: 规则字符在java.util.rege ...

  4. golang学习笔记14 golang substring 截取字符串

    golang学习笔记14 golang substring 截取字符串golang 没有java那样的substring函数,但支持直接根据 index 截取字符串mystr := "hel ...

  5. java笔记整理

    Java 笔记整理 包含内容     Unix Java 基础, 数据库(Oracle jdbc Hibernate pl/sql), web, JSP, Struts, Ajax Spring, E ...

  6. 并发编程学习笔记(14)----ThreadPoolExecutor(线程池)的使用及原理

    1. 概述 1.1 什么是线程池 与jdbc连接池类似,在创建线程池或销毁线程时,会消耗大量的系统资源,因此在java中提出了线程池的概念,预先创建好固定数量的线程,当有任务需要线程去执行时,不用再去 ...

  7. [C++学习笔记14]动态创建对象(定义静态方法实现在map查找具体类名对应的创建函数,并返回函数指针,map真是一个万能类)good

    [C++学习笔记14]动态创建对象   C#/Java中的反射机制 动态获取类型信息(方法与属性) 动态创建对象 动态调用对象的方法 动态操作对象的属性 前提:需要给每个类添加元数据 动态创建对象 实 ...

  8. Effective Java笔记一 创建和销毁对象

    Effective Java笔记一 创建和销毁对象 第1条 考虑用静态工厂方法代替构造器 第2条 遇到多个构造器参数时要考虑用构建器 第3条 用私有构造器或者枚举类型强化Singleton属性 第4条 ...

  9. java笔记00-目录

    --2013年7月26日17:49:59 学习java已久,趁最近有空,写一个总结: java笔记01-反射:

随机推荐

  1. 解决 iOS 9.1 微信内置浏览器中html audio 不能自动播放的问题

    使用微信现在提供过的微信js-sdk 在ready中进行播放便可. 首先引用js : <script src="http://res.wx.qq.com/open/js/jweixin ...

  2. nginx+ISS 负载均衡 快速入门

    第一:下载 http://pan.baidu.com/s/1dDwapbF 或者官网 http://nginx.org/en/download.html 启动服务: 直接运行nginx.exe,缺点控 ...

  3. mplayer-1.3.0-2016-09-01.7z

    鼠标右键 快速定位 左SHIFT 记录开始时间 左CTRL 记录结束时间 右CTRL 复制开始结束时间 00:00:00.000 00:00:00.000 右SHIFT 生成视频剪切命令保存到 _cu ...

  4. FreeRTOS学习及移植笔记之一:开始FreeRTOS之旅

    1.必要的准备工作 工欲善其事,必先利其器,在开始学习和移植之前,相应的准备工作必不可少.所以在开始我们写要准备如下: 测试环境:我准备在STM32F103平台上移植和测试FreeRTOS系统 准备F ...

  5. jdbc连接数据库(mysql,sqlserver,oracle)

    package com.test; import java.sql.Connection; import java.sql.DriverManager; import java.sql.Prepare ...

  6. WPF使用IDataErrorInfo进行数据校验

    这篇博客将介绍如何使用IDataErrorInfo进行数据校验.下面直接看例子.一个Customer类,两个属性(FirstName, Age) class Customer { public str ...

  7. Dubbo详细介绍与安装使用过程

    今天看到一篇不错的dubbo介绍教程,原文链接:http://blog.csdn.net/xlgen157387/article/details/51865289 1 Dubbo介绍 1.1 dubb ...

  8. redis数据类型之—Sorted set

    (1)sorted set 简单介绍 有序集合,在集合类型的基础上为集合中的每个元素都关联了一个分数,这样可以很方便的获得分数最高的N个元素. (2)sorted set 常用命令

  9. 使用sp_xml_preparedocument处理XML文档

    有时会在存储过程中处理一些XML格式的数据,所以会用到sp_xml_preparedocument,他可以将XML数据进行读取,然后使用 MSXML 分析器 (Msxmlsql.dll) 对其进行分析 ...

  10. Linux环境下Nginx配置安装PHP

    下边的安装配置方法,我试了一晚上没有成功,可能因为我的系统环境比较复杂,所以建议: 先安装PHP.使用yum命令安装,在安装配置MySQL,具体做法看博客中其他文章,至于Nginx服务器可以安装完这两 ...