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

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

?? byte.java

?? gcc-you can use this code to learn something about gcc, and inquire further into linux,
?? 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一区二区三区免费野_久草精品视频
欧美一级在线观看| 国产一区二区网址| 日本v片在线高清不卡在线观看| 午夜av一区二区三区| 蜜桃视频一区二区三区在线观看 | 国产精品99久久久久久有的能看 | 中文字幕不卡一区| 一区二区三区不卡视频| 日韩在线观看一区二区| 国产一区视频网站| 91浏览器在线视频| 在线不卡欧美精品一区二区三区| 精品伦理精品一区| 综合分类小说区另类春色亚洲小说欧美| 亚洲资源在线观看| 黄色成人免费在线| 91看片淫黄大片一级在线观看| 欧美人妇做爰xxxⅹ性高电影| 精品福利一二区| 亚洲男女一区二区三区| 美女视频黄免费的久久| 成人激情午夜影院| 欧美一区二区三区免费视频| 欧美国产日韩亚洲一区| 无码av免费一区二区三区试看 | 精品国产91久久久久久久妲己| 亚洲丝袜精品丝袜在线| 久久av中文字幕片| 91福利在线导航| xfplay精品久久| 亚洲一区二区在线免费观看视频 | 国产日韩欧美一区二区三区综合| 一区二区三区在线观看视频| 极品美女销魂一区二区三区| 在线观看日韩电影| 国产精品美女www爽爽爽| 日韩精品乱码免费| 色综合网站在线| 26uuu亚洲综合色欧美| 亚洲国产精品久久久久秋霞影院| 国产成人8x视频一区二区| 日韩一区二区在线观看视频播放 | 在线观看av一区二区| 国产午夜精品美女毛片视频| 日韩一区欧美二区| 欧美亚洲一区二区在线观看| 欧美高清在线视频| 久久99国产精品免费| 欧美日韩中文字幕一区| 亚洲日韩欧美一区二区在线| 国产乱对白刺激视频不卡| 日韩欧美国产小视频| 亚洲高清一区二区三区| 99re66热这里只有精品3直播 | 成人黄色软件下载| 久久综合久久综合亚洲| 日本不卡123| 欧美日韩成人一区二区| 一区二区三区日韩精品| eeuss鲁片一区二区三区| 亚洲国产成人一区二区三区| 激情五月婷婷综合| 日韩欧美国产电影| 日本不卡高清视频| 欧美一级视频精品观看| 日本亚洲三级在线| 欧美精品久久一区二区三区| 亚洲成人久久影院| 欧美体内she精高潮| 亚洲精选视频在线| 色94色欧美sute亚洲线路一久| 国产精品黄色在线观看| 国产v日产∨综合v精品视频| 久久人人超碰精品| 国产精品一区二区在线观看不卡 | 久久精品国产77777蜜臀| 7777女厕盗摄久久久| 日韩中文字幕区一区有砖一区| 欧美午夜寂寞影院| 午夜视频在线观看一区二区三区 | 久久99蜜桃精品| 日韩一区二区三区在线视频| 免费观看一级欧美片| 91精品国产91久久久久久一区二区| 视频一区二区欧美| 欧美一区二区在线免费观看| 免费精品视频最新在线| 欧美不卡视频一区| 国产精品一二三| 亚洲国产精品ⅴa在线观看| 成人动漫一区二区三区| 亚洲欧洲一区二区在线播放| 色综合夜色一区| 性做久久久久久久免费看| 7777精品久久久大香线蕉| 蜜臀久久99精品久久久久久9| 亚洲精品在线观看视频| 国产99久久久精品| 中文字幕综合网| 欧美日本在线视频| 久久福利资源站| 国产免费观看久久| 日本道免费精品一区二区三区| 亚洲午夜国产一区99re久久| 欧美一区欧美二区| 国产成人激情av| 亚洲女女做受ⅹxx高潮| 欧美三级电影在线观看| 国产在线精品视频| 亚洲欧美综合在线精品| 欧美日韩五月天| 国内精品嫩模私拍在线| 亚洲欧洲99久久| 91精品国产综合久久精品app | 国产精品天天摸av网| 色婷婷综合视频在线观看| 亚洲va天堂va国产va久| 久久五月婷婷丁香社区| 91麻豆文化传媒在线观看| 日韩精品一区第一页| 日本一区二区视频在线观看| 91久久精品一区二区二区| 国产精品网站在线| 7777精品伊人久久久大香线蕉 | 亚洲天堂成人网| 欧美一区二区三区免费大片 | 国产精品不卡在线| 欧美精品一二三区| 国产sm精品调教视频网站| 亚洲午夜电影在线观看| 国产农村妇女毛片精品久久麻豆| 欧美色综合久久| 国产成人午夜99999| 亚洲电影第三页| 国产精品视频线看| 91精品国产免费| 91久久精品一区二区| 国产精品77777| 亚洲成人av中文| 国产精品久久久久aaaa| 正在播放亚洲一区| av在线一区二区| 美女精品一区二区| 亚洲综合色婷婷| 国产精品久久久一本精品 | 青青青伊人色综合久久| 亚洲色图.com| 久久久99精品久久| 欧美一级日韩不卡播放免费| 99re66热这里只有精品3直播| 韩国成人福利片在线播放| 亚洲成人三级小说| 亚洲图片你懂的| 久久久精品天堂| 日韩限制级电影在线观看| 91国产精品成人| 97超碰欧美中文字幕| 国产成人精品亚洲777人妖 | 日韩欧美的一区二区| 欧美亚日韩国产aⅴ精品中极品| 高清免费成人av| 国产在线视频一区二区| 日韩黄色免费电影| 一区二区激情视频| 亚洲日本成人在线观看| 国产日产欧产精品推荐色| 日韩女优毛片在线| 欧美一区二区三区在线视频| 欧美亚洲综合一区| 91黄视频在线观看| 一本色道a无线码一区v| 成人av午夜影院| 国产999精品久久久久久| 国产乱人伦偷精品视频免下载| 久久99久久久欧美国产| 石原莉奈在线亚洲二区| 亚洲已满18点击进入久久| 亚洲免费资源在线播放| 亚洲欧洲色图综合| 亚洲色图视频网| 亚洲精品成人天堂一二三| 亚洲女与黑人做爰| 亚洲人被黑人高潮完整版| 亚洲四区在线观看| 亚洲人快播电影网| 亚洲欧美成人一区二区三区| 玉足女爽爽91| 亚洲综合久久久| 亚洲午夜一二三区视频| 亚洲一区影音先锋| 日韩激情视频在线观看| 日本成人在线电影网| 麻豆成人av在线| 激情丁香综合五月| 成人亚洲精品久久久久软件| 成人黄色一级视频| 91精品福利视频| 777久久久精品| 亚洲精品在线电影| 亚洲国产成人一区二区三区|