亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? field.java

?? 這是個開源的JAVA虛擬機,可以直接RUN jar或class文件, 是個國外人寫的.想了解JAVA底層的朋友不能不看~!
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* java.lang.reflect.Field - reflection of Java fields   Copyright (C) 1998, 2001 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version. GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. *//*Robert Lougher 17/11/2003.This Classpath reference implementation has been modified to work with JamVM.*/package java.lang.reflect;/** * The Field class represents a member variable of a class. It also allows * dynamic access to a member, via reflection. This works for both * static and instance fields. Operations on Field objects know how to * do widening conversions, but throw {@link IllegalArgumentException} if * a narrowing conversion would be necessary. You can query for information * on this Field regardless of location, but get and set access may be limited * by Java language access controls. If you can't do it in the compiler, you * can't normally do it here either.<p> * * <B>Note:</B> This class returns and accepts types as Classes, even * primitive types; there are Class types defined that represent each * different primitive type.  They are <code>java.lang.Boolean.TYPE, * java.lang.Byte.TYPE,</code>, also available as <code>boolean.class, * byte.class</code>, etc.  These are not to be confused with the * classes <code>java.lang.Boolean, java.lang.Byte</code>, etc., which are * real classes.<p> * * Also note that this is not a serializable class.  It is entirely feasible * to make it serializable using the Externalizable interface, but this is * on Sun, not me. * * @author John Keiser * @author Eric Blake <ebb9@email.byu.edu> * @see Member * @see Class * @see Class#getField(String) * @see Class#getDeclaredField(String) * @see Class#getFields() * @see Class#getDeclaredFields() * @since 1.1 * @status updated to 1.4 */public final class Fieldextends AccessibleObject implements Member{  private Class declaringClass;  private Class type;  private String name;  private int slot;  /**   * This class is uninstantiable except natively.   */  private Field(Class declaringClass, Class type, String name, int slot)  {    this.declaringClass = declaringClass;    this.type = type;    this.name = name;    this.slot = slot;  }  /**   * Gets the class that declared this field, or the class where this field   * is a non-inherited member.   * @return the class that declared this member   */  public Class getDeclaringClass()  {    return declaringClass;  }  /**   * Gets the name of this field.   * @return the name of this field   */  public String getName()  {    return name;  }  /**   * Gets the modifiers this field uses.  Use the <code>Modifier</code>   * class to interpret the values.  A field can only have a subset of the   * following modifiers: public, private, protected, static, final,   * transient, and volatile.   *   * @return an integer representing the modifiers to this Member   * @see Modifier   */  public int getModifiers() {      return getFieldModifiers(slot);  }  public native int getFieldModifiers(int slot);  /**   * Gets the type of this field.   * @return the type of this field   */  public Class getType() {      return type;  }  /**   * Compare two objects to see if they are semantically equivalent.   * Two Fields are semantically equivalent if they have the same declaring   * class, name, and type. Since you can't creat a Field except through   * the VM, this is just the == relation.   *   * @param o the object to compare to   * @return <code>true</code> if they are equal; <code>false</code> if not   */  public boolean equals(Object o)  {    if (!(o instanceof Field))      return false;    Field that = (Field)o;     if (this.getDeclaringClass() != that.getDeclaringClass())      return false;    if (!this.getName().equals(that.getName()))      return false;    if (this.getType() != that.getType())      return false;    return true;  }  /**   * Get the hash code for the Field. The Field hash code is the hash code   * of its name XOR'd with the hash code of its class name.   *   * @return the hash code for the object.   */  public int hashCode()  {    return getDeclaringClass().getName().hashCode() ^ getName().hashCode();  }  /**   * Get a String representation of the Field. A Field's String   * representation is "&lt;modifiers&gt; &lt;type&gt;   * &lt;class&gt;.&lt;fieldname&gt;".<br> Example:   * <code>public transient boolean gnu.parse.Parser.parseComplete</code>   *   * @return the String representation of the Field   */  public String toString()  {    // 64 is a reasonable buffer initial size for field    StringBuffer sb = new StringBuffer(64);    Modifier.toString(getModifiers(), sb).append(' ');    sb.append(getType().getName()).append(' ');    sb.append(getDeclaringClass().getName()).append('.');    sb.append(getName());    return sb.toString();  }   /**   * Get the value of this Field.  If it is primitive, it will be wrapped   * in the appropriate wrapper type (boolean = java.lang.Boolean).<p>   *   * If the field is static, <code>o</code> will be ignored. Otherwise, if   * <code>o</code> is null, you get a <code>NullPointerException</code>,   * and if it is incompatible with the declaring class of the field, you   * get an <code>IllegalArgumentException</code>.<p>   *   * Next, if this Field enforces access control, your runtime context is   * evaluated, and you may have an <code>IllegalAccessException</code> if   * you could not access this field in similar compiled code. If the field   * is static, and its class is uninitialized, you trigger class   * initialization, which may end in a   * <code>ExceptionInInitializerError</code>.<p>   *   * Finally, the field is accessed, and primitives are wrapped (but not   * necessarily in new objects). This method accesses the field of the   * declaring class, even if the instance passed in belongs to a subclass   * which declares another field to hide this one.   *   * @param o the object to get the value of this Field from   * @return the value of the Field   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if <code>o</code> is not an instance of   *         the class or interface declaring this field   * @throws NullPointerException if <code>o</code> is null and this field   *         requires an instance   * @throws ExceptionInInitializerError if accessing a static field triggered   *         class initialization, which then failed   * @see #getBoolean(Object)   * @see #getByte(Object)   * @see #getChar(Object)   * @see #getShort(Object)   * @see #getInt(Object)   * @see #getLong(Object)   * @see #getFloat(Object)   * @see #getDouble(Object)   */  public Object get(Object o) throws IllegalAccessException {    return getField(o, declaringClass, type, slot);  }  private native Object getField(Object o, Class declaringClass, Class type, int slot)      throws IllegalAccessException;  /**   * Get the value of this boolean Field. If the field is static,   * <code>o</code> will be ignored.   *   * @param o the object to get the value of this Field from   * @return the value of the Field   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not a boolean field of   *         <code>o</code>, or if <code>o</code> is not an instance of the   *         declaring class of this field   * @throws NullPointerException if <code>o</code> is null and this field   *         requires an instance   * @throws ExceptionInInitializerError if accessing a static field triggered   *         class initialization, which then failed   * @see #get(Object)   */  public boolean getBoolean(Object o)    throws IllegalAccessException {        return getZField(o, declaringClass, type, slot, 1);    }  /**   * Get the value of this byte Field. If the field is static,   * <code>o</code> will be ignored.   *   * @param o the object to get the value of this Field from   * @return the value of the Field   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not a byte field of   *         <code>o</code>, or if <code>o</code> is not an instance of the   *         declaring class of this field   * @throws NullPointerException if <code>o</code> is null and this field   *         requires an instance   * @throws ExceptionInInitializerError if accessing a static field triggered   *         class initialization, which then failed   * @see #get(Object)   */  public byte getByte(Object o)    throws IllegalAccessException {        return getBField(o, declaringClass, type, slot, 2);    }  /**   * Get the value of this Field as a char. If the field is static,   * <code>o</code> will be ignored.   *   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not a char field of   *         <code>o</code>, or if <code>o</code> is not an instance   *         of the declaring class of this field   * @throws NullPointerException if <code>o</code> is null and this field   *         requires an instance   * @throws ExceptionInInitializerError if accessing a static field triggered   *         class initialization, which then failed   * @see #get(Object)   */  public char getChar(Object o)    throws IllegalAccessException {        return getCField(o, declaringClass, type, slot, 3);    }  /**   * Get the value of this Field as a short. If the field is static,   * <code>o</code> will be ignored.   *   * @param o the object to get the value of this Field from   * @return the value of the Field   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not a byte or short   *         field of <code>o</code>, or if <code>o</code> is not an instance   *         of the declaring class of this field   * @throws NullPointerException if <code>o</code> is null and this field   *         requires an instance   * @throws ExceptionInInitializerError if accessing a static field triggered   *         class initialization, which then failed   * @see #get(Object)   */  public short getShort(Object o)    throws IllegalAccessException {        return getSField(o, declaringClass, type, slot, 4);    }  /**   * Get the value of this Field as an int. If the field is static,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品国产三级国产aⅴ中文| 久久免费视频一区| av在线不卡网| 国产不卡一区视频| 粉嫩一区二区三区在线看| 韩国成人精品a∨在线观看| 久久超碰97中文字幕| 蜜臀av一区二区| 久久狠狠亚洲综合| 国产久卡久卡久卡久卡视频精品| 九色综合国产一区二区三区| 国内精品免费**视频| 国产91露脸合集magnet| 国产激情一区二区三区| 成人福利在线看| 91福利视频在线| 欧美老女人在线| 亚洲精品一区二区三区香蕉| 久久久亚洲综合| 亚洲特黄一级片| 亚洲福利视频导航| 免费成人小视频| 国产精品 欧美精品| 91免费国产在线| 欧美精品一级二级| 国产女同互慰高潮91漫画| 亚洲丝袜制服诱惑| 青娱乐精品视频在线| 国产精品77777竹菊影视小说| 成人黄动漫网站免费app| 欧美日韩综合在线| 久久夜色精品一区| 亚洲免费观看视频| 久久99国产精品久久| 99视频精品在线| 日韩欧美在线综合网| 国产精品亲子伦对白| 天天操天天综合网| 成人av电影在线观看| 欧美日韩你懂的| 国产精品色在线观看| 午夜视频一区二区三区| 国产a视频精品免费观看| 欧美日韩高清一区二区不卡| 日本一区二区三区四区在线视频| 五月天丁香久久| 成人高清视频在线| 欧美v亚洲v综合ⅴ国产v| 自拍偷在线精品自拍偷无码专区| 免费久久精品视频| 欧美亚洲国产一区二区三区| 久久精品人人做人人爽人人| 亚洲18色成人| 在线观看91精品国产入口| 日韩欧美国产午夜精品| 国产精品萝li| 国产精品一区免费在线观看| 欧美日韩精品福利| 亚洲人成网站影音先锋播放| 国产毛片一区二区| 日韩精品一区二区三区四区| 午夜精品福利视频网站| 99re这里只有精品首页| 国产午夜精品久久久久久免费视 | 亚洲国产精品99久久久久久久久| 亚洲成人av一区二区三区| av网站免费线看精品| 国产偷国产偷精品高清尤物| 韩国三级电影一区二区| 精品少妇一区二区三区视频免付费| 一区二区三区在线播| 91免费版在线| 亚洲人快播电影网| 91在线一区二区三区| 亚洲另类春色校园小说| 本田岬高潮一区二区三区| 国产精品网曝门| 国产91丝袜在线播放九色| 国产性色一区二区| 国产成人免费视频精品含羞草妖精| 久久久一区二区三区捆绑**| 国产酒店精品激情| 国产欧美精品区一区二区三区| 国产91清纯白嫩初高中在线观看| 国产视频一区在线播放| 国产成人aaa| 最新欧美精品一区二区三区| 99re66热这里只有精品3直播| 一区二区中文视频| 欧美日韩一区二区在线观看视频| 亚洲第一成年网| 日韩欧美一区二区视频| 国产精品一区二区三区乱码| 欧美国产一区二区在线观看| 99久久国产综合色|国产精品| 日韩理论片一区二区| 欧美日韩国产不卡| 国产精品中文欧美| 国产精品国产自产拍在线| 在线观看亚洲精品| 久久国产精品无码网站| 中文字幕不卡的av| 在线中文字幕一区| 久久成人av少妇免费| 1024精品合集| 日韩午夜三级在线| 成人免费av在线| 亚洲va欧美va人人爽午夜| 26uuu精品一区二区| 99久久久国产精品免费蜜臀| 日韩精品视频网| 中文字幕av一区 二区| 欧美亚洲一区二区在线| 国产一区二区三区久久久| 亚洲黄色录像片| 久久蜜桃av一区二区天堂| 日本道精品一区二区三区 | 久久久精品国产免大香伊| 在线观看国产精品网站| 国产一区二区三区四区五区入口 | 日韩亚洲欧美一区| 99视频有精品| 久久激情综合网| 一级日本不卡的影视| 精品国产乱码久久久久久蜜臀| 91在线无精精品入口| 国产乱一区二区| 日韩经典一区二区| 一区二区三区在线免费观看| 国产欧美日韩中文久久| 欧美老女人第四色| 91精品办公室少妇高潮对白| 国产一区二区导航在线播放| 天天综合色天天综合色h| 亚洲精品美腿丝袜| 国产精品国产三级国产有无不卡 | 国产精品影视网| 日韩黄色免费电影| 一区二区三区四区精品在线视频| 久久久精品天堂| 精品久久人人做人人爱| 欧美日韩免费不卡视频一区二区三区| 国产99精品国产| 国产一区二区三区综合| 理论电影国产精品| 秋霞国产午夜精品免费视频| 亚洲一区二区成人在线观看| 亚洲人成网站影音先锋播放| 国产精品久久久久7777按摩| 久久精品视频免费| 久久久激情视频| 国产婷婷色一区二区三区| 精品国产污污免费网站入口| 欧美精品乱人伦久久久久久| 欧美视频一区二区三区在线观看| 本田岬高潮一区二区三区| 成人午夜伦理影院| 99re热这里只有精品免费视频 | 亚洲免费观看高清完整| 亚洲天堂2016| 夜夜嗨av一区二区三区四季av| 中文字幕中文在线不卡住| 一区在线观看免费| 依依成人精品视频| 亚洲国产精品久久人人爱蜜臀 | 久久婷婷久久一区二区三区| 精品国产成人在线影院| 久久―日本道色综合久久| 久久嫩草精品久久久精品一| 国产精品天干天干在观线| 国产精品免费丝袜| 亚洲伦理在线精品| 婷婷中文字幕综合| 精彩视频一区二区三区| 国产麻豆精品theporn| 国产成人精品网址| 91亚洲永久精品| 欧美日韩精品一区二区三区四区 | 丝袜美腿成人在线| 九一久久久久久| 99riav一区二区三区| 欧美日韩国产免费| 久久品道一品道久久精品| 1000部国产精品成人观看| 亚洲一区精品在线| 国内久久婷婷综合| 99国产精品久久久久久久久久| 欧美体内she精视频| 26uuu亚洲婷婷狠狠天堂| 亚洲婷婷综合色高清在线| 日本vs亚洲vs韩国一区三区| 丁香婷婷深情五月亚洲| 在线观看一区日韩| 国产亚洲欧洲997久久综合| 亚洲午夜久久久| 国产精品香蕉一区二区三区| 欧美三级中文字幕在线观看| 国产三级精品视频| 日韩国产精品久久久| 99久久精品久久久久久清纯|