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

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

?? field.java

?? java virtual machince kaffe
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
    setCharInternal(o, value);  }  /**   * Set this short Field. If the field is static, <code>o</code> will be   * ignored.   *   * @param o the object to set this Field on   * @param value the value to set this Field to   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not a short, int, long,   *         float, or double field, or if <code>o</code> is not an instance   *         of the class 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 #set(Object, Object)   */  public void setShort(Object o, short value)    throws IllegalAccessException  {    checkFinal();    setShortInternal(o, value);  }  /**   * Set this int Field. If the field is static, <code>o</code> will be   * ignored.   *   * @param o the object to set this Field on   * @param value the value to set this Field to   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not an int, long, float, or   *         double field, or if <code>o</code> is not an instance of the   *         class 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 #set(Object, Object)   */  public void setInt(Object o, int value)    throws IllegalAccessException  {    checkFinal();    setIntInternal(o, value);  }  /**   * Set this long Field. If the field is static, <code>o</code> will be   * ignored.   *   * @param o the object to set this Field on   * @param value the value to set this Field to   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not a long, float, or double   *         field, or if <code>o</code> is not an instance of the class   *         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 #set(Object, Object)   */  public void setLong(Object o, long value)    throws IllegalAccessException  {    checkFinal();    setLongInternal(o, value);  }  /**   * Set this float Field. If the field is static, <code>o</code> will be   * ignored.   *   * @param o the object to set this Field on   * @param value the value to set this Field to   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not a float or long field, or   *         if <code>o</code> is not an instance of the class 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 #set(Object, Object)   */  public void setFloat(Object o, float value)    throws IllegalAccessException  {    checkFinal();    setFloatInternal(o, value);  }  /**   * Set this double Field. If the field is static, <code>o</code> will be   * ignored.   *   * @param o the object to set this Field on   * @param value the value to set this Field to   * @throws IllegalAccessException if you could not normally access this field   *         (i.e. it is not public)   * @throws IllegalArgumentException if this is not a double field, or if   *         <code>o</code> is not an instance of the class 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 #set(Object, Object)   */  public void setDouble(Object o, double value)    throws IllegalAccessException  {    checkFinal();    setDoubleInternal(o, value);  }  /**   * Return the generic type of the field. If the field type is not a generic   * type, the method returns the same as <code>getType()</code>.   *   * @throws GenericSignatureFormatError if the generic signature does   *         not conform to the format specified in the Virtual Machine   *         specification, version 3.   * @since 1.5   */  public Type getGenericType()  {    String signature = getSignature();    if (signature == null)      return getType();    FieldSignatureParser p = new FieldSignatureParser(getDeclaringClass(),                                                      signature);    return p.getFieldType();  }  /**   * Return the String in the Signature attribute for this field. If there   * is no Signature attribute, return null.   */  private native String getSignature();  /* The following code has been merged in from Kaffe's Field.java implementation */  /*   * Java core library component.   *   * Copyright (c) 1997, 1998, 2001   *      Transvirtual Technologies, Inc.  All rights reserved.   *   * Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006   *      Kaffe.org contributors. See ChangeLogs for details.   *   * See the file "license.terms" for information on usage and redistribution   * of this file.   */  private void setInternal(Object obj, Object value)     throws IllegalArgumentException, IllegalAccessException   {    if (type.isPrimitive()) {      if (value instanceof Boolean) {	setBooleanInternal(obj, ((Boolean)value).booleanValue());      }      else if (value instanceof Byte) {	setByteInternal(obj, ((Byte)value).byteValue());      }      else if (value instanceof Short) {	setShortInternal(obj, ((Short)value).shortValue());      }      else if (value instanceof Character) {	setCharInternal(obj, ((Character)value).charValue());      }      else if (value instanceof Integer) {	setIntInternal(obj, ((Integer)value).intValue());      }      else if (value instanceof Long) {	setLongInternal(obj, ((Long)value).longValue());      }      else if (value instanceof Float) {	setFloatInternal(obj, ((Float)value).floatValue());      }      else {	setDoubleInternal(obj, ((Double)value).doubleValue());      }    }    else {      if (value!=null && !type.isInstance(value)) {	throw new IllegalArgumentException("field type mismatch: Trying to assign a " 					   + value.getClass().getName() 					   + " to " + toString());      }      setObject0(obj, value);    }  }  public void setBooleanInternal(Object obj, boolean z)     throws IllegalArgumentException, IllegalAccessException   {    if (type == Boolean.TYPE)      setBoolean0(obj, z);    else      throw new IllegalArgumentException();  }  public void setByteInternal(Object obj, byte b)    throws IllegalArgumentException, IllegalAccessException  {    if (type == Byte.TYPE)      setByte0(obj, b);    else       setShortInternal(obj, b);  }  public void setCharInternal(Object obj, char c)     throws IllegalArgumentException, IllegalAccessException   {    if (type == Character.TYPE)      setChar0(obj, c);    else      setIntInternal(obj, c);  }  public void setDoubleInternal(Object obj, double d)     throws IllegalArgumentException, IllegalAccessException   {    if (type == Double.TYPE)      setDouble0(obj, d);    else      throw new IllegalArgumentException();  }  public void setFloatInternal(Object obj, float f)    throws IllegalArgumentException, IllegalAccessException   {    if (type == Float.TYPE)      setFloat0(obj, f);    else      setDoubleInternal(obj, f);  }  public void setIntInternal(Object obj, int i)    throws IllegalArgumentException, IllegalAccessException   {    if (type == Integer.TYPE)      setInt0(obj, i);    else      setLongInternal(obj, i);  }  public void setLongInternal(Object obj, long l)    throws IllegalArgumentException, IllegalAccessException   {    if (type == Long.TYPE)      setLong0(obj, l);    else      setFloatInternal(obj, l);  }  public void setShortInternal(Object obj, short s)    throws IllegalArgumentException, IllegalAccessException  {    if (type == Short.TYPE)      setShort0(obj, s);    else      setIntInternal(obj, s);  }  private void checkFinal()    throws IllegalAccessException  {    if (Modifier.isFinal(getModifiers()) && !flag)     {	throw new IllegalAccessException("trying to set final field " 					 + toString());    }  }  private native boolean getBoolean0(Object obj);  private native byte getByte0(Object obj);  private native char getChar0(Object obj);  private native short getShort0(Object obj);  private native int getInt0(Object obj);  private native long getLong0(Object obj);  private native float getFloat0(Object obj);  private native double getDouble0(Object obj);  private native Object getObject0(Object obj);    private native void setBoolean0(Object obj, boolean v);  private native void setByte0(Object obj, byte v);  private native void setChar0(Object obj, char v);  private native void setShort0(Object obj, short v);  private native void setInt0(Object obj, int v);  private native void setLong0(Object obj, long v);  private native void setFloat0(Object obj, float v);  private native void setDouble0(Object obj, double v);  private native void setObject0(Object obj, Object v);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久国产剧场电影| 免费成人在线网站| 九九国产精品视频| 色婷婷激情久久| 久久影院电视剧免费观看| 夜夜嗨av一区二区三区四季av| 国产最新精品精品你懂的| 欧美日韩一二三区| 专区另类欧美日韩| 国产精品一区一区三区| 3d动漫精品啪啪| 亚洲黄色免费电影| gogogo免费视频观看亚洲一| 欧美成人伊人久久综合网| 亚洲r级在线视频| 91色婷婷久久久久合中文| 久久午夜羞羞影院免费观看| 日韩精品1区2区3区| 在线视频欧美精品| 亚洲欧美日韩中文播放| 国产99久久久久| 精品国产免费视频| 日韩福利电影在线观看| 欧美性一区二区| 亚洲蜜臀av乱码久久精品| 粉嫩av一区二区三区粉嫩| 精品福利视频一区二区三区| 爽爽淫人综合网网站| 欧美日韩中文字幕一区二区| 亚洲精品国产无天堂网2021| 99久久精品一区二区| 欧美激情综合五月色丁香| 国产美女在线观看一区| 精品久久一区二区| 另类综合日韩欧美亚洲| 欧美一区二区在线看| 天堂资源在线中文精品| 欧美视频在线一区二区三区 | 欧美一区二区三区免费视频 | 国产夜色精品一区二区av| 蜜桃一区二区三区在线| 555www色欧美视频| 日日夜夜精品免费视频| 777午夜精品视频在线播放| 亚洲一区二区三区视频在线| 在线观看亚洲专区| 亚洲成av人片www| 欧美片网站yy| 日韩中文字幕区一区有砖一区 | 国产91精品免费| 国产欧美一区二区精品忘忧草| 国产一区二区福利视频| 国产欧美精品一区aⅴ影院| 成人综合婷婷国产精品久久免费| 中文字幕av一区二区三区| 99免费精品在线观看| 一区二区高清视频在线观看| 欧美日韩中文字幕一区| 日本在线不卡一区| 欧美精品一区二区三区高清aⅴ| 精品一区二区日韩| 国产色91在线| av亚洲精华国产精华精华| 一区二区久久久| 88在线观看91蜜桃国自产| 美女视频第一区二区三区免费观看网站| 欧美一区二区在线播放| 韩日欧美一区二区三区| 亚洲国产成人午夜在线一区| 91欧美激情一区二区三区成人| 亚洲午夜私人影院| 日韩欧美国产一区在线观看| 国产成人超碰人人澡人人澡| 1000精品久久久久久久久| 欧美日韩在线播放| 精品在线亚洲视频| 国产精品乱码人人做人人爱| 色香蕉成人二区免费| 日日摸夜夜添夜夜添国产精品| 久久综合资源网| 91在线视频免费观看| 亚洲va韩国va欧美va精品| 精品久久久久香蕉网| 99久久综合国产精品| 香蕉久久夜色精品国产使用方法| 精品国产亚洲在线| av不卡免费电影| 天天影视涩香欲综合网| 久久久久9999亚洲精品| 91激情五月电影| 美国十次了思思久久精品导航| 国产色一区二区| 欧美色视频在线| 国产老肥熟一区二区三区| 亚洲精品中文字幕在线观看| 91麻豆精品国产91久久久更新时间| 国产精一区二区三区| 亚洲尤物在线视频观看| 精品国产乱码久久久久久久久| 99热国产精品| 精品在线免费视频| 亚洲精品国产一区二区精华液| 欧美本精品男人aⅴ天堂| av资源站一区| 久久精品久久99精品久久| 亚洲免费观看高清完整版在线 | 91视频在线看| 久久国产人妖系列| 亚洲精品福利视频网站| 精品国产123| 欧美日韩一二三区| a亚洲天堂av| 国产一本一道久久香蕉| 性做久久久久久免费观看| 国产精品久久久久一区 | 成人h动漫精品一区二区| 视频一区中文字幕国产| 综合分类小说区另类春色亚洲小说欧美| 91精品欧美一区二区三区综合在| 成人av片在线观看| 国内外成人在线| 午夜欧美视频在线观看 | 久久综合久色欧美综合狠狠| 欧美亚洲综合久久| av亚洲产国偷v产偷v自拍| 激情综合色综合久久| 亚洲福利国产精品| 亚洲视频网在线直播| 国产人妖乱国产精品人妖| 日韩精品中文字幕一区二区三区 | 不卡大黄网站免费看| 久久66热re国产| 日韩vs国产vs欧美| 亚洲午夜激情av| 亚洲情趣在线观看| 国产精品婷婷午夜在线观看| 欧美电影免费观看高清完整版在线观看 | 国产欧美一区视频| 精品国产99国产精品| 91精品啪在线观看国产60岁| 欧美无砖砖区免费| 色av成人天堂桃色av| av亚洲产国偷v产偷v自拍| 成人免费不卡视频| 国产精一品亚洲二区在线视频| 老色鬼精品视频在线观看播放| 视频一区欧美日韩| 五月激情综合婷婷| 亚洲电影第三页| 亚洲一区二区在线免费观看视频| 亚洲欧美另类小说| 亚洲人妖av一区二区| 国产精品成人网| 亚洲欧洲美洲综合色网| 1000精品久久久久久久久| 奇米精品一区二区三区四区 | 欧美一二三在线| 555www色欧美视频| 91精品国产综合久久久久久漫画| 欧美久久久久中文字幕| 欧美日韩亚洲国产综合| 欧美日韩免费在线视频| 欧美日韩www| 欧美老女人第四色| 777奇米四色成人影色区| 91精品国产91久久综合桃花| 91麻豆精品国产| 日韩精品在线一区| 久久久久久亚洲综合| 国产精品视频线看| 综合久久一区二区三区| 亚洲乱码中文字幕| 亚洲妇女屁股眼交7| 日本不卡123| 国产一区二区不卡老阿姨| 高清成人在线观看| 97久久超碰国产精品电影| 色成年激情久久综合| 欧美电影一区二区三区| 日韩精品一区在线| 国产欧美精品一区aⅴ影院| 最新国产の精品合集bt伙计| 亚洲精品免费看| 午夜视频一区在线观看| 免费成人av资源网| 国产精品亚洲а∨天堂免在线| 成人黄色在线网站| 在线精品视频免费播放| 91精品国产乱码| 久久精品一区八戒影视| 综合激情成人伊人| 亚洲成av人片在www色猫咪| 日本色综合中文字幕| 国产麻豆精品久久一二三| av成人免费在线| 制服丝袜激情欧洲亚洲| 国产拍欧美日韩视频二区| 一区二区三区免费在线观看| 免费在线观看一区二区三区| 国产999精品久久久久久|