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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? byte.java

?? linux下的gcc編譯器
?? JAVA
字號:
/* Byte.java -- object wrapper for byte   Copyright (C) 1998, 2001, 2002 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. */package java.lang;/** * Instances of class <code>Byte</code> represent primitive <code>byte</code> * values. * * Additionally, this class provides various helper functions and variables * useful to bytes. * * @author Paul Fisher * @author John Keiser * @author Per Bothner * @author Eric Blake <ebb9@email.byu.edu> * @since 1.1 * @status updated to 1.4 */public final class Byte extends Number implements Comparable{  /**   * Compatible with JDK 1.1+.   */  private static final long serialVersionUID = -7183698231559129828L;  /**   * The minimum value a <code>byte</code> can represent is -128 (or   * -2<sup>7</sup>).   */  public static final byte MIN_VALUE = -128;  /**   * The maximum value a <code>byte</code> can represent is 127 (or   * 2<sup>7</sup> - 1).   */  public static final byte MAX_VALUE = 127;  /**   * The primitive type <code>byte</code> is represented by this   * <code>Class</code> object.   */  public static final Class TYPE = VMClassLoader.getPrimitiveClass('B');  /**   * The immutable value of this Byte.   *   * @serial the wrapped byte   */  private final byte value;  /**   * Create a <code>Byte</code> object representing the value of the   * <code>byte</code> argument.   *   * @param value the value to use   */  public Byte(byte value)  {    this.value = value;  }  /**   * Create a <code>Byte</code> object representing the value specified   * by the <code>String</code> argument   *   * @param s the string to convert   * @throws NumberFormatException if the String does not contain a byte   * @see #valueOf(String)   */  public Byte(String s)  {    value = parseByte(s, 10);  }  /**   * Converts the <code>byte</code> to a <code>String</code> and assumes   * a radix of 10.   *   * @param b the <code>byte</code> to convert to <code>String</code>   * @return the <code>String</code> representation of the argument   */  public static String toString(byte b)  {    return String.valueOf(b);  }  /**   * Converts the specified <code>String</code> into a <code>byte</code>.   * This function assumes a radix of 10.   *   * @param s the <code>String</code> to convert   * @return the <code>byte</code> value of <code>s</code>   * @throws NumberFormatException if <code>s</code> cannot be parsed as a   *         <code>byte</code>   * @see #parseByte(String)   */  public static byte parseByte(String s)  {    return parseByte(s, 10);  }  /**   * Converts the specified <code>String</code> into an <code>int</code>   * using the specified radix (base). The string must not be <code>null</code>   * or empty. It may begin with an optional '-', which will negate the answer,   * provided that there are also valid digits. Each digit is parsed as if by   * <code>Character.digit(d, radix)</code>, and must be in the range   * <code>0</code> to <code>radix - 1</code>. Finally, the result must be   * within <code>MIN_VALUE</code> to <code>MAX_VALUE</code>, inclusive.   * Unlike Double.parseDouble, you may not have a leading '+'.   *   * @param s the <code>String</code> to convert   * @param radix the radix (base) to use in the conversion   * @return the <code>String</code> argument converted to </code>byte</code>   * @throws NumberFormatException if <code>s</code> cannot be parsed as a   *         <code>byte</code>   */  public static byte parseByte(String s, int radix)  {    int i = Integer.parseInt(s, radix, false);    if ((byte) i != i)      throw new NumberFormatException();    return (byte) i;  }  /**   * Creates a new <code>Byte</code> object using the <code>String</code>   * and specified radix (base).   *   * @param s the <code>String</code> to convert   * @param radix the radix (base) to convert with   * @return the new <code>Byte</code>   * @throws NumberFormatException if <code>s</code> cannot be parsed as a   *         <code>byte</code>   * @see #parseByte(String, int)   */  public static Byte valueOf(String s, int radix)  {    return new Byte(parseByte(s, radix));  }  /**   * Creates a new <code>Byte</code> object using the <code>String</code>,   * assuming a radix of 10.   *   * @param s the <code>String</code> to convert   * @return the new <code>Byte</code>   * @throws NumberFormatException if <code>s</code> cannot be parsed as a   *         <code>byte</code>   * @see #Byte(String)   * @see #parseByte(String)   */  public static Byte valueOf(String s)  {    return new Byte(parseByte(s, 10));  }  /**   * Convert the specified <code>String</code> into a <code>Byte</code>.   * The <code>String</code> may represent decimal, hexadecimal, or   * octal numbers.   *   * <p>The extended BNF grammar is as follows:<br>   * <pre>   * <em>DecodableString</em>:   *      ( [ <code>-</code> ] <em>DecimalNumber</em> )   *    | ( [ <code>-</code> ] ( <code>0x</code> | <code>0X</code>   *              | <code>#</code> ) { <em>HexDigit</em> }+ )   *    | ( [ <code>-</code> ] <code>0</code> { <em>OctalDigit</em> } )   * <em>DecimalNumber</em>:   *        <em>DecimalDigit except '0'</em> { <em>DecimalDigit</em> }   * <em>DecimalDigit</em>:   *        <em>Character.digit(d, 10) has value 0 to 9</em>   * <em>OctalDigit</em>:   *        <em>Character.digit(d, 8) has value 0 to 7</em>   * <em>DecimalDigit</em>:   *        <em>Character.digit(d, 16) has value 0 to 15</em>   * </pre>   * Finally, the value must be in the range <code>MIN_VALUE</code> to   * <code>MAX_VALUE</code>, or an exception is thrown.   *   * @param s the <code>String</code> to interpret   * @return the value of the String as a <code>Byte</code>   * @throws NumberFormatException if <code>s</code> cannot be parsed as a   *         <code>byte</code>   * @throws NullPointerException if <code>s</code> is null   * @see Integer#decode(String)   */  public static Byte decode(String s)  {    int i = Integer.parseInt(s, 10, true);    if ((byte) i != i)      throw new NumberFormatException();    return new Byte((byte) i);  }  /**   * Return the value of this <code>Byte</code>.   *   * @return the byte value   */  public byte byteValue()  {    return value;  }  /**   * Return the value of this <code>Byte</code> as a <code>short</code>.   *   * @return the short value   */  public short shortValue()  {    return value;  }  /**   * Return the value of this <code>Byte</code> as an <code>int</code>.   *   * @return the int value   */  public int intValue()  {    return value;  }  /**   * Return the value of this <code>Byte</code> as a <code>long</code>.   *   * @return the long value   */  public long longValue()  {    return value;  }  /**   * Return the value of this <code>Byte</code> as a <code>float</code>.   *   * @return the float value   */  public float floatValue()  {    return value;  }  /**   * Return the value of this <code>Byte</code> as a <code>double</code>.   *   * @return the double value   */  public double doubleValue()  {    return value;  }  /**   * Converts the <code>Byte</code> value to a <code>String</code> and   * assumes a radix of 10.   *   * @return the <code>String</code> representation of this <code>Byte</code>   * @see Integer#toString()   */  public String toString()  {    return String.valueOf(value);  }  /**   * Return a hashcode representing this Object. <code>Byte</code>'s hash   * code is simply its value.   *   * @return this Object's hash code   */  public int hashCode()  {    return value;  }  /**   * Returns <code>true</code> if <code>obj</code> is an instance of   * <code>Byte</code> and represents the same byte value.   *   * @param obj the object to compare   * @return whether these Objects are semantically equal   */  public boolean equals(Object obj)  {    return obj instanceof Byte && value == ((Byte) obj).value;  }  /**   * Compare two Bytes numerically by comparing their <code>byte</code> values.   * The result is positive if the first is greater, negative if the second   * is greater, and 0 if the two are equal.   *   * @param b the Byte to compare   * @return the comparison   * @since 1.2   */  public int compareTo(Byte b)  {    return value - b.value;  }  /**   * Behaves like <code>compareTo(Byte)</code> unless the Object   * is not a <code>Byte</code>.   *   * @param o the object to compare   * @return the comparison   * @throws ClassCastException if the argument is not a <code>Byte</code>   * @see #compareTo(Byte)   * @see Comparable   * @since 1.2   */  public int compareTo(Object o)  {    return compareTo((Byte) o);  }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲三级小视频| 欧美性做爰猛烈叫床潮| 日韩欧美区一区二| 久久超碰97中文字幕| 欧美一区二区三区播放老司机| 香蕉影视欧美成人| 在线成人av网站| 蜜臀av一区二区在线免费观看| 欧美一级片在线观看| 精彩视频一区二区| 欧美激情综合五月色丁香小说| 粉嫩绯色av一区二区在线观看| 国产精品久久久久久久久久免费看 | 精品噜噜噜噜久久久久久久久试看| 乱中年女人伦av一区二区| 久久综合丝袜日本网| 成人免费看的视频| 亚洲一区二区三区不卡国产欧美| 欧美日韩小视频| 狠狠狠色丁香婷婷综合久久五月| 久久久久久9999| 色婷婷av一区二区三区gif | 国产精品色哟哟网站| 欧洲精品中文字幕| 久久99精品久久久久久国产越南| 国产三级一区二区三区| 91国产丝袜在线播放| 美国欧美日韩国产在线播放| 国产精品理论片| 制服视频三区第一页精品| 国产成人一区在线| 亚洲一区二区三区在线| 精品国产乱码久久久久久图片 | eeuss鲁一区二区三区| 亚洲国产精品久久艾草纯爱| 久久久久久99久久久精品网站| 欧美中文字幕一二三区视频| 黑人巨大精品欧美一区| 亚洲国产三级在线| 国产女主播在线一区二区| 精品视频999| 一本一道久久a久久精品| 国产一区在线视频| 丝袜亚洲精品中文字幕一区| 亚洲欧洲韩国日本视频| 久久久国际精品| 日韩一卡二卡三卡四卡| 欧美优质美女网站| 99久久综合狠狠综合久久| 精品一区二区在线免费观看| 亚洲综合一区二区三区| 亚洲欧美在线另类| 亚洲国产成人在线| 精品久久久久久无| 制服丝袜日韩国产| 欧美精品在线视频| 欧美三级电影网站| 99久久精品国产导航| 国产一区不卡精品| 蜜臂av日日欢夜夜爽一区| 26uuu亚洲| 欧美成人午夜电影| 欧美日韩一区二区欧美激情 | 亚洲电影欧美电影有声小说| 欧美成人三级电影在线| 色婷婷综合中文久久一本| 国产一区二区不卡老阿姨| 亚洲高清免费一级二级三级| 国产精品精品国产色婷婷| 欧美精品一区二区蜜臀亚洲| 欧美乱妇15p| 欧洲国内综合视频| 91在线精品一区二区| av一区二区三区黑人| 国产另类ts人妖一区二区| 美女视频一区二区三区| 性感美女久久精品| 亚洲成人一区二区| 亚洲自拍都市欧美小说| 亚洲天堂精品在线观看| 国产精品久久久久久久久久免费看 | 91视频精品在这里| 97国产一区二区| 99久久免费精品| 不卡欧美aaaaa| 成人免费看黄yyy456| 不卡一区二区在线| 国产白丝网站精品污在线入口| 国产一区二区三区免费在线观看| 久久精品国产99国产精品| 日本麻豆一区二区三区视频| 亚洲第一搞黄网站| 亚洲精品国产精华液| 性感美女极品91精品| 亚洲成人av电影在线| 亚洲成人精品一区| 日韩二区三区四区| 国内久久精品视频| 国产激情视频一区二区三区欧美| 极品瑜伽女神91| 国产成人av福利| 色综合久久综合中文综合网| 色8久久人人97超碰香蕉987| 欧美综合久久久| 欧美日韩国产精品自在自线| 91精品国产91久久综合桃花| 日韩三级视频中文字幕| 欧美精品一区二区蜜臀亚洲| 国产三级一区二区| 亚洲另类在线一区| 视频一区国产视频| 极品美女销魂一区二区三区| 成人福利在线看| 欧美亚洲日本一区| 日韩欧美视频在线| 中文字幕一区二区在线播放 | 欧美一区午夜视频在线观看| 日韩一二三四区| 久久精品视频在线免费观看| 中文字幕中文在线不卡住| 一级日本不卡的影视| 亚洲福利视频一区| 国产一区久久久| 色哟哟欧美精品| 日韩一级精品视频在线观看| 国产精品无圣光一区二区| 亚洲午夜久久久久久久久电影院| 蜜桃在线一区二区三区| 波多野结衣91| 欧美精品99久久久**| 国产精品久久久一本精品| 日韩高清欧美激情| 成人网在线免费视频| 欧美日韩亚洲综合一区二区三区| 日韩免费电影网站| 亚洲色欲色欲www| 蜜桃一区二区三区四区| 一本到高清视频免费精品| 日韩欧美黄色影院| 亚洲激情校园春色| 国产一区二区三区免费播放 | 国产精华液一区二区三区| 99精品久久99久久久久| 国产日韩欧美不卡| 丝袜诱惑亚洲看片| 91视频免费看| 国产视频一区二区在线观看| 午夜电影网亚洲视频| 午夜精品福利视频网站| 波多野结衣中文一区| 日韩一区二区三区在线观看| 亚洲丝袜另类动漫二区| 国产一区 二区 三区一级| 欧美日本一道本| 国产女同互慰高潮91漫画| 九一久久久久久| 制服丝袜日韩国产| 亚洲成a天堂v人片| 欧美视频第二页| 亚洲欧美一区二区三区久本道91 | 在线免费精品视频| 国产精品久久久久久久午夜片| 亚洲成av人影院| 欧美怡红院视频| 亚洲图片另类小说| 成人av资源在线| 久久久国产精品麻豆| 蜜臂av日日欢夜夜爽一区| 欧美精品一卡两卡| 亚洲h在线观看| 欧美日韩精品一区二区三区蜜桃 | 一区二区三区四区蜜桃| 成人一区在线看| 久久综合久久久久88| 日产国产高清一区二区三区| 欧美在线视频日韩| 亚洲主播在线观看| 99视频精品在线| 亚洲高清免费观看高清完整版在线观看| 91在线小视频| 亚洲激情自拍视频| 欧美在线综合视频| 亚洲永久精品国产| 91视频91自| 亚洲国产精品影院| 欧美日本韩国一区二区三区视频| 一区二区三区四区视频精品免费| 一本到不卡免费一区二区| 伊人夜夜躁av伊人久久| 色菇凉天天综合网| 亚洲男人天堂av网| 91麻豆精品91久久久久同性| 日本欧美在线观看| 精品播放一区二区| 国产成人一区二区精品非洲| 欧美激情一二三区| 色av成人天堂桃色av| 日韩福利视频导航| 久久精品视频在线免费观看| 99久久精品费精品国产一区二区|