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

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

?? double.java

?? linux下編程用 編譯軟件
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
   *   * @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)   */  // GCJ LOCAL: We diverge from Classpath for efficiency.  public static native long doubleToLongBits(double value);  // END GCJ LOCAL  /**   * 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)   */  // GCJ LOCAL: We diverge from Classpath for efficiency.  public static native long doubleToRawLongBits(double value);  // END GCJ LOCAL  /**   * 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)   */  // GCJ LOCAL: We diverge from Classpath for efficiency.  public static native double longBitsToDouble(long bits);  // END GCJ LOCAL  /**   * 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;  }  /**   * Helper method to convert to string.   *   * @param d the double to convert   * @param isFloat true if the conversion is requested by Float (results in   *        fewer digits)   */  // Package visible for use by Float.  static native String toString(double d, boolean isFloat);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本一区二区三区电影| 日韩欧美国产综合| 国产在线精品视频| 日韩二区三区四区| 午夜影视日本亚洲欧洲精品| 亚洲色图欧美在线| 1区2区3区国产精品| 亚洲国产精品激情在线观看| 久久久www成人免费毛片麻豆 | 久久婷婷色综合| 91精品国产乱| 日韩精品一区二区三区老鸭窝| 91精品国产麻豆国产自产在线| 欧美人与禽zozo性伦| 884aa四虎影成人精品一区| 色婷婷精品久久二区二区蜜臂av| 色94色欧美sute亚洲线路一ni | 国产精品无码永久免费888| 国产亚洲欧美日韩日本| 久久久久久久久久久黄色| 久久九九99视频| 国产精品久久久久久亚洲毛片| 亚洲色欲色欲www| 亚洲高清一区二区三区| 天天操天天干天天综合网| 欧美96一区二区免费视频| 久久av中文字幕片| 丁香五精品蜜臀久久久久99网站| 成人av在线电影| 欧美综合亚洲图片综合区| 欧美一区二区三区四区久久| 精品成人免费观看| 日韩伦理电影网| 日韩成人一级片| 成人精品在线视频观看| 欧美综合在线视频| 精品美女在线播放| 国产精品不卡在线| 午夜成人免费电影| 7777精品伊人久久久大香线蕉经典版下载 | 国产精品中文字幕日韩精品| 99久久婷婷国产| 欧美精品自拍偷拍| 国产精品久久久久久亚洲伦| 亚洲国产aⅴ成人精品无吗| 国产综合成人久久大片91| 日韩亚洲欧美成人一区| 欧美mv日韩mv国产网站app| 国产精品传媒在线| 久久超碰97中文字幕| 日本国产一区二区| 国产日韩视频一区二区三区| 午夜精品视频一区| 成人h动漫精品| 日韩免费高清av| 亚洲午夜免费视频| 99综合电影在线视频| 日韩丝袜情趣美女图片| 亚洲免费观看在线视频| 国产高清视频一区| 91精品国产91热久久久做人人| 国产精品久久久久久久久久久免费看| 欧美a一区二区| 欧美综合一区二区三区| 中文字幕亚洲一区二区av在线 | 蜜桃视频一区二区三区在线观看| 色综合天天综合网国产成人综合天| 欧美一区二区三区日韩视频| 亚洲制服欧美中文字幕中文字幕| 国产夫妻精品视频| 制服丝袜日韩国产| 亚洲国产精品一区二区www| 99re热这里只有精品免费视频| 欧美大片一区二区三区| 人人狠狠综合久久亚洲| 欧美午夜理伦三级在线观看| 成人欧美一区二区三区小说| 成人免费黄色大片| 日本一二三不卡| 成人一区二区三区中文字幕| 久久综合五月天婷婷伊人| 麻豆精品视频在线观看视频| 欧美一区二区三区在线电影| 日韩在线一二三区| 欧美变态tickling挠脚心| 美女视频一区二区三区| 67194成人在线观看| 日韩av一二三| 日韩视频免费直播| 麻豆成人91精品二区三区| 日韩精品一区在线观看| 久久99精品久久久久婷婷| 日韩精品中文字幕一区| 久久99久久精品| 久久久久久97三级| 99热精品国产| 午夜欧美大尺度福利影院在线看 | 在线电影国产精品| 日本不卡一区二区| 久久综合九色综合久久久精品综合| 国产一区在线精品| 亚洲欧洲性图库| 欧美日韩一区二区三区高清| 久热成人在线视频| 欧美激情资源网| 91高清视频免费看| 裸体在线国模精品偷拍| 国产亚洲精品中文字幕| 91网站在线播放| 亚洲五月六月丁香激情| 精品久久久久久无| 91在线你懂得| 日本不卡免费在线视频| 国产精品欧美久久久久一区二区| 一本到高清视频免费精品| 日韩国产欧美在线观看| 国产欧美一二三区| 欧美日韩国产美| 国产成人精品亚洲日本在线桃色| 亚洲精品国产成人久久av盗摄| 日韩写真欧美这视频| 国产成人在线视频播放| 亚洲成a天堂v人片| 国产区在线观看成人精品 | 亚洲午夜一二三区视频| 欧美精品一区二区蜜臀亚洲| 色嗨嗨av一区二区三区| 精品午夜一区二区三区在线观看| 亚洲欧洲色图综合| 亚洲一区二区三区视频在线播放| 久久先锋影音av| 欧美区在线观看| 91免费国产视频网站| 国产在线精品免费| 亚洲第一主播视频| 亚洲视频电影在线| 久久精品亚洲麻豆av一区二区| 欧美日韩在线不卡| 99久久综合精品| 国产精品自拍三区| 免费精品视频在线| 午夜影院在线观看欧美| 亚洲精选免费视频| 国产精品麻豆久久久| 欧美变态tickle挠乳网站| 欧美日韩免费在线视频| 91丨国产丨九色丨pron| 国产精品一区在线观看乱码 | 欧美一区二区免费视频| 91黄色激情网站| 91美女视频网站| 91在线视频官网| 91美女片黄在线观看91美女| 成人小视频免费在线观看| 国产麻豆精品视频| 国产一区欧美二区| 国产一区二区精品久久91| 精品一区二区免费在线观看| 裸体在线国模精品偷拍| 久久精品av麻豆的观看方式| 日本欧美肥老太交大片| 日本不卡中文字幕| 久久国产夜色精品鲁鲁99| 另类综合日韩欧美亚洲| 久久精品久久综合| 激情五月激情综合网| 韩国精品在线观看| 国产高清精品在线| 成人avav影音| 成人动漫视频在线| 色综合天天狠狠| 欧美男人的天堂一二区| 欧美一区欧美二区| 26uuu国产一区二区三区| 欧美激情一区二区三区四区| 国产精品亲子伦对白| 一区二区三区在线免费播放 | 欧洲中文字幕精品| 精品视频在线免费| 欧美一区国产二区| 国产亚洲一区二区三区在线观看| 国产精品无遮挡| 亚洲一区二区三区不卡国产欧美 | 欧美一级日韩一级| 精品日韩一区二区三区免费视频| 久久久久久久久97黄色工厂| 自拍偷在线精品自拍偷无码专区| 亚洲最快最全在线视频| 久久99精品网久久| 99久久国产综合色|国产精品| 欧美在线观看一区二区| 日韩欧美精品在线视频| 国产精品乱码一区二区三区软件| 亚洲精品日日夜夜| 精品一区二区在线观看| av不卡在线播放| 日韩一区二区三区高清免费看看| 国产精品区一区二区三| 日韩中文字幕1| zzijzzij亚洲日本少妇熟睡|