Java ObjectStreamFiled getType()方法

java.io.ObjectStreamField.getType() 获取字段的类型。

1 语法

public Class<?> getType()

2 参数

3 返回值

返回一个Class对象,该对象表示可序列化字段的类型。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.ObjectStreamField.getType()方法的例子
 */
import java.io.*;
import java.util.Calendar;

public class Demo {
    public static void main(String[] args) {

        // create a new object stream class for Integers
        ObjectStreamClass osc = ObjectStreamClass.lookup(Integer.class);

        // get the field value from Integer class
        ObjectStreamField field = osc.getField("value");

        // get the type of the field
        System.out.println("" + field.getType());

        // create a new object stream class for calendar
        ObjectStreamClass osc2 = ObjectStreamClass.lookup(Calendar.class);

        // get the field value from Calendar class
        ObjectStreamField field2 = osc2.getField("lenient");

        // get the type of the field2
        System.out.println("" + field2.getType());
    }
}

输出结果为:

int
boolean

热门文章

优秀文章