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

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

?? double.java

?? gcc的組建
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
  /**   * Return <code>true</code> if the <code>double</code> has a value   * equal to either <code>NEGATIVE_INFINITY</code> or   * <code>POSITIVE_INFINITY</code>, otherwise return <code>false</code>.   *   * @param v the <code>double</code> to compare   * @return whether the argument is (-/+) infinity.   */  public static boolean isInfinite(double v)  {    return v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY;  }  /**   * Return <code>true</code> if the value of this <code>Double</code>   * is the same as <code>NaN</code>, otherwise return <code>false</code>.   *   * @return whether this <code>Double</code> is <code>NaN</code>   */  public boolean isNaN()  {    return isNaN(value);  }  /**   * Return <code>true</code> if the value of this <code>Double</code>   * is the same as <code>NEGATIVE_INFINITY</code> or   * <code>POSITIVE_INFINITY</code>, otherwise return <code>false</code>.   *   * @return whether this <code>Double</code> is (-/+) infinity   */  public boolean isInfinite()  {    return isInfinite(value);  }  /**   * Convert the <code>double</code> value of this <code>Double</code>   * to a <code>String</code>.  This method calls   * <code>Double.toString(double)</code> to do its dirty work.   *   * @return the <code>String</code> representation   * @see #toString(double)   */  public String toString()  {    return toString(value);  }  /**   * Return the value of this <code>Double</code> as a <code>byte</code>.   *   * @return the byte value   * @since 1.1   */  public byte byteValue()  {    return (byte) value;  }  /**   * Return the value of this <code>Double</code> as a <code>short</code>.   *   * @return the short value   * @since 1.1   */  public short shortValue()  {    return (short) value;  }  /**   * Return the value of this <code>Double</code> as an <code>int</code>.   *   * @return the int value   */  public int intValue()  {    return (int) value;  }  /**   * Return the value of this <code>Double</code> as a <code>long</code>.   *   * @return the long value   */  public long longValue()  {    return (long) value;  }  /**   * Return the value of this <code>Double</code> as a <code>float</code>.   *   * @return the float value   */  public float floatValue()  {    return (float) value;  }  /**   * Return the value of this <code>Double</code>.   *   * @return the double value   */  public double doubleValue()  {    return value;  }  /**   * Return a hashcode representing this Object. <code>Double</code>'s hash   * code is calculated by:<br>   * <code>long v = Double.doubleToLongBits(doubleValue());<br>   *    int hash = (int)(v^(v&gt;&gt;32))</code>.   *   * @return this Object's hash code   * @see #doubleToLongBits(double)   */  public int hashCode()  {    long v = doubleToLongBits(value);    return (int) (v ^ (v >>> 32));  }  /**   * Returns <code>true</code> if <code>obj</code> is an instance of   * <code>Double</code> and represents the same double value. Unlike comparing   * two doubles with <code>==</code>, this treats two instances of   * <code>Double.NaN</code> as equal, but treats <code>0.0</code> and   * <code>-0.0</code> as unequal.   *   * <p>Note that <code>d1.equals(d2)</code> is identical to   * <code>doubleToLongBits(d1.doubleValue()) ==   *    doubleToLongBits(d2.doubleValue())</code>.   *   * @param obj the object to compare   * @return whether the objects are semantically equal   */  public boolean equals(Object obj)  {    if (! (obj instanceof Double))      return false;    double d = ((Double) obj).value;    // Avoid call to native method. However, some implementations, like gcj,    // are better off using floatToIntBits(value) == floatToIntBits(f).    // Check common case first, then check NaN and 0.    if (value == d)      return (value != 0) || (1 / value == 1 / d);    return isNaN(value) && isNaN(d);  }  /**   * Convert the double to the IEEE 754 floating-point "double format" bit   * layout. Bit 63 (the most significant) is the sign bit, bits 62-52   * (masked by 0x7ff0000000000000L) represent the exponent, and bits 51-0   * (masked by 0x000fffffffffffffL) are the mantissa. This function   * collapses all versions of NaN to 0x7ff8000000000000L. The result of this   * function can be used as the argument to   * <code>Double.longBitsToDouble(long)</code> to obtain the original   * <code>double</code> value.   *   * @param value the <code>double</code> to convert   * @return the bits of the <code>double</code>   * @see #longBitsToDouble(long)   */  public static long doubleToLongBits(double value)  {    return VMDouble.doubleToLongBits(value);  }  /**   * Convert the double to the IEEE 754 floating-point "double format" bit   * layout. Bit 63 (the most significant) is the sign bit, bits 62-52   * (masked by 0x7ff0000000000000L) represent the exponent, and bits 51-0   * (masked by 0x000fffffffffffffL) are the mantissa. This function   * leaves NaN alone, rather than collapsing to a canonical value. The   * result of this function can be used as the argument to   * <code>Double.longBitsToDouble(long)</code> to obtain the original   * <code>double</code> value.   *   * @param value the <code>double</code> to convert   * @return the bits of the <code>double</code>   * @see #longBitsToDouble(long)   */  public static long doubleToRawLongBits(double value)  {    return VMDouble.doubleToRawLongBits(value);  }  /**   * Convert the argument in IEEE 754 floating-point "double format" bit   * layout to the corresponding float. Bit 63 (the most significant) is the   * sign bit, bits 62-52 (masked by 0x7ff0000000000000L) represent the   * exponent, and bits 51-0 (masked by 0x000fffffffffffffL) are the mantissa.   * This function leaves NaN alone, so that you can recover the bit pattern   * with <code>Double.doubleToRawLongBits(double)</code>.   *   * @param bits the bits to convert   * @return the <code>double</code> represented by the bits   * @see #doubleToLongBits(double)   * @see #doubleToRawLongBits(double)   */  public static double longBitsToDouble(long bits)  {    return VMDouble.longBitsToDouble(bits);  }  /**   * Compare two Doubles numerically by comparing their <code>double</code>   * values. The result is positive if the first is greater, negative if the   * second is greater, and 0 if the two are equal. However, this special   * cases NaN and signed zero as follows: NaN is considered greater than   * all other doubles, including <code>POSITIVE_INFINITY</code>, and positive   * zero is considered greater than negative zero.   *   * @param d the Double to compare   * @return the comparison   * @since 1.2   */  public int compareTo(Double d)  {    return compare(value, d.value);  }  /**   * Behaves like <code>compareTo(Double)</code> unless the Object   * is not an <code>Double</code>.   *   * @param o the object to compare   * @return the comparison   * @throws ClassCastException if the argument is not a <code>Double</code>   * @see #compareTo(Double)   * @see Comparable   * @since 1.2   */  public int compareTo(Object o)  {    return compare(value, ((Double) o).value);  }  /**   * Behaves like <code>new Double(x).compareTo(new Double(y))</code>; in   * other words this compares two doubles, special casing NaN and zero,   * without the overhead of objects.   *   * @param x the first double to compare   * @param y the second double to compare   * @return the comparison   * @since 1.4   */  public static int compare(double x, double y)  {    if (isNaN(x))      return isNaN(y) ? 0 : 1;    if (isNaN(y))      return -1;    // recall that 0.0 == -0.0, so we convert to infinites and try again    if (x == 0 && y == 0)      return (int) (1 / x - 1 / y);    if (x == y)      return 0;    return x > y ? 1 : -1;  }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美激情一区三区| 精品人伦一区二区色婷婷| 国产麻豆精品视频| 久久99久久久欧美国产| 日韩高清在线不卡| 日本中文字幕不卡| 日本成人超碰在线观看| 免费一区二区视频| 加勒比av一区二区| 国产一区二区伦理片| 国产精品一卡二| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 欧美日韩中文字幕一区二区| 成人午夜电影久久影院| 不卡高清视频专区| 一本色道a无线码一区v| 欧美日韩亚洲丝袜制服| 欧美一区二区三区影视| 欧美大片免费久久精品三p| 2020国产精品| 亚洲男人电影天堂| 三级久久三级久久久| 国产真实乱偷精品视频免| 成人黄色电影在线| 一本大道综合伊人精品热热 | 久热成人在线视频| 国产成人av福利| 欧美在线免费视屏| 日韩三级伦理片妻子的秘密按摩| 久久久综合视频| 亚洲人妖av一区二区| 亚洲成a人片在线不卡一二三区 | 国产一区二区精品久久91| 福利电影一区二区| 在线看日本不卡| 欧美变态tickling挠脚心| 国产精品久久国产精麻豆99网站| 一区二区三区精品在线观看| 久久se精品一区二区| 99r精品视频| 精品国产伦一区二区三区观看体验 | 午夜精品久久久久久久99樱桃| 蜜桃av噜噜一区二区三区小说| 国产99一区视频免费| 欧美蜜桃一区二区三区| 国产精品网站一区| 97久久超碰精品国产| 日韩一二三区视频| 一区二区三区在线看| 国产一区二区成人久久免费影院 | 国产精品一区二区不卡| 91福利社在线观看| 国产日韩欧美亚洲| 免费视频一区二区| 色婷婷综合激情| 国产精品另类一区| 久久精品国产久精国产| 欧美性受极品xxxx喷水| 国产精品美女视频| 极品少妇xxxx精品少妇| 欧美日韩国产首页| 一区二区三区日本| 97精品超碰一区二区三区| 欧美精品一区二区三区久久久 | 国产乱人伦偷精品视频免下载 | 99re这里只有精品视频首页| www精品美女久久久tv| 免费久久99精品国产| 欧美色视频一区| 亚洲精品国产精华液| 99re亚洲国产精品| 国产精品区一区二区三| 国产jizzjizz一区二区| 国产亚洲女人久久久久毛片| 激情综合一区二区三区| 精品粉嫩超白一线天av| 捆绑调教美女网站视频一区| 91麻豆精品国产自产在线| 亚洲成人一区在线| 欧美久久久久中文字幕| 视频一区二区不卡| 日韩一区二区三区四区| 久久精品国产成人一区二区三区 | 中文av一区特黄| 国产91精品入口| 亚洲视频资源在线| 欧美性淫爽ww久久久久无| 亚洲一区二区欧美| 欧美一区二区三区成人| 麻豆一区二区三| 久久精品人人做人人爽人人| 国产69精品久久久久777| 国产精品久久精品日日| 色狠狠色狠狠综合| 五月婷婷综合网| 26uuu亚洲综合色欧美| 成人小视频免费在线观看| 国产精品久久久久久福利一牛影视 | 精品噜噜噜噜久久久久久久久试看 | 国产一区二区三区在线观看免费视频 | 欧美综合亚洲图片综合区| 亚洲国产欧美在线| 精品国产成人在线影院| 成人一区在线观看| 亚洲国产精品影院| 欧美精品一区二区蜜臀亚洲| 成人动漫中文字幕| 午夜精品福利一区二区三区av | 91成人看片片| 精品一区二区三区免费视频| 中文字幕不卡的av| 欧美精品第1页| 波多野结衣中文一区| 日韩中文字幕区一区有砖一区| 久久先锋影音av| 欧美日韩一区二区三区视频| 精品在线一区二区三区| 一区二区三区精密机械公司| 精品国产一区a| 欧美综合在线视频| 成人激情开心网| 黄色日韩三级电影| 亚洲成人综合视频| 国产精品不卡一区二区三区| 91精品国产综合久久久蜜臀粉嫩| 国产成人午夜高潮毛片| 丝袜a∨在线一区二区三区不卡| 国产精品毛片大码女人| 日韩午夜激情电影| 欧美日韩日日骚| 欧美电视剧在线看免费| 日本高清不卡aⅴ免费网站| 国产一区二区不卡老阿姨| 五月婷婷久久丁香| ...av二区三区久久精品| 精品久久久久久久久久久久久久久| 色婷婷久久综合| eeuss鲁片一区二区三区在线看| 美脚の诱脚舐め脚责91| 亚洲va韩国va欧美va| 一区二区日韩av| 亚洲日本欧美天堂| 中文字幕中文在线不卡住| 久久久久国产成人精品亚洲午夜| 91精品国产综合久久久久久久久久 | 91精彩视频在线| 99久久综合国产精品| 高清不卡在线观看| 国产激情一区二区三区桃花岛亚洲 | 自拍偷拍亚洲欧美日韩| 中文字幕第一页久久| 中文字幕乱码一区二区免费| 久久久久久久久免费| 精品国产一区二区亚洲人成毛片| 日韩一级二级三级精品视频| 在线播放一区二区三区| 91精品综合久久久久久| 91精品一区二区三区在线观看| 欧美人妖巨大在线| 91精品国产综合久久久久久久| 91精品国产综合久久精品app| 久久久久久综合| 国产精品丝袜在线| 国产精品初高中害羞小美女文| 中文字幕一区在线观看视频| 国产精品成人免费精品自在线观看| 国产精品久久久久影院| 亚洲丝袜另类动漫二区| 一级精品视频在线观看宜春院| 亚洲一区二区三区国产| 青青草成人在线观看| 捆绑调教美女网站视频一区| 国产精品资源网站| jizzjizzjizz欧美| 欧美日韩一区二区在线观看| 日韩欧美成人激情| 久久精品人人做人人综合| 国产精品电影一区二区| 亚洲妇女屁股眼交7| 精品一区二区三区视频在线观看| 高清成人在线观看| 欧美日韩一卡二卡| 久久精品视频免费| 一区二区三区在线视频免费 | 亚洲国产日韩av| 国内一区二区视频| 色诱视频网站一区| 日韩区在线观看| 亚洲三级久久久| 久久精品国产精品亚洲精品| av一区二区三区在线| 4hu四虎永久在线影院成人| 日本一区二区三区国色天香 | 免费看日韩a级影片| 国产成人免费在线| 欧美日本一区二区三区| 亚洲国产成人自拍| 蜜臀av性久久久久蜜臀av麻豆| 成人激情小说乱人伦| 日韩午夜激情av|