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

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

?? stringbuffer.java

?? gcc的組建
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
   * @return this <code>StringBuffer</code>   * @see #append(Object)   * @since 1.5   */  public synchronized StringBuffer append(CharSequence sequence)  {    if (sequence == null)      sequence = "null";    return append(sequence, 0, sequence.length());  }  /**   * Append the specified subsequence of the <code>CharSequence</code>   * argument to this <code>StringBuffer</code>.   *   * @param sequence the <code>CharSequence</code> to append   * @param start the starting index   * @param end one past the ending index   * @return this <code>StringBuffer</code>   * @see #append(Object)   * @since 1.5   */  public synchronized StringBuffer append(CharSequence sequence,					  int start, int end)  {    if (sequence == null)      sequence = "null";    if (start < 0 || end < 0 || start > end || end > sequence.length())      throw new IndexOutOfBoundsException();    ensureCapacity_unsynchronized(this.count + end - start);    for (int i = start; i < end; ++i)      value[count++] = sequence.charAt(i);    return this;  }  /**   * Append the <code>char</code> array to this <code>StringBuffer</code>.   * This is similar (but more efficient) than   * <code>append(new String(data))</code>, except in the case of null.   *   * @param data the <code>char[]</code> to append   * @return this <code>StringBuffer</code>   * @throws NullPointerException if <code>str</code> is <code>null</code>   * @see #append(char[], int, int)   */  public StringBuffer append(char[] data)  {    return append(data, 0, data.length);  }  /**   * Append part of the <code>char</code> array to this   * <code>StringBuffer</code>. This is similar (but more efficient) than   * <code>append(new String(data, offset, count))</code>, except in the case   * of null.   *   * @param data the <code>char[]</code> to append   * @param offset the start location in <code>str</code>   * @param count the number of characters to get from <code>str</code>   * @return this <code>StringBuffer</code>   * @throws NullPointerException if <code>str</code> is <code>null</code>   * @throws IndexOutOfBoundsException if offset or count is out of range   *         (while unspecified, this is a StringIndexOutOfBoundsException)   */  public synchronized StringBuffer append(char[] data, int offset, int count)  {    if (offset < 0 || count < 0 || offset > data.length - count)      throw new StringIndexOutOfBoundsException();    ensureCapacity_unsynchronized(this.count + count);    VMSystem.arraycopy(data, offset, value, this.count, count);    this.count += count;    return this;  }  /**   * Append the <code>String</code> value of the argument to this   * <code>StringBuffer</code>. Uses <code>String.valueOf()</code> to convert   * to <code>String</code>.   *   * @param bool the <code>boolean</code> to convert and append   * @return this <code>StringBuffer</code>   * @see String#valueOf(boolean)   */  public StringBuffer append(boolean bool)  {    return append(bool ? "true" : "false");  }  /**   * Append the <code>char</code> to this <code>StringBuffer</code>.   *   * @param ch the <code>char</code> to append   * @return this <code>StringBuffer</code>   */  public synchronized StringBuffer append(char ch)  {    ensureCapacity_unsynchronized(count + 1);    value[count++] = ch;    return this;  }  /**   * Append the code point to this <code>StringBuffer</code>.   * This is like #append(char), but will append two characters   * if a supplementary code point is given.   *   * @param code the code point to append   * @return this <code>StringBuffer</code>   * @see Character#toChars(int, char[], int)   * @since 1.5   */  public synchronized StringBuffer appendCodePoint(int code)  {    int len = Character.charCount(code);    ensureCapacity_unsynchronized(count + len);    Character.toChars(code, value, count);    count += len;    return this;  }  /**   * Append the <code>String</code> value of the argument to this   * <code>StringBuffer</code>. Uses <code>String.valueOf()</code> to convert   * to <code>String</code>.   *   * @param inum the <code>int</code> to convert and append   * @return this <code>StringBuffer</code>   * @see String#valueOf(int)   */  // This is native in libgcj, for efficiency.  public StringBuffer append(int inum)  {    return append(String.valueOf(inum));  }  /**   * Append the <code>String</code> value of the argument to this   * <code>StringBuffer</code>. Uses <code>String.valueOf()</code> to convert   * to <code>String</code>.   *   * @param lnum the <code>long</code> to convert and append   * @return this <code>StringBuffer</code>   * @see String#valueOf(long)   */  public StringBuffer append(long lnum)  {    return append(Long.toString(lnum, 10));  }  /**   * Append the <code>String</code> value of the argument to this   * <code>StringBuffer</code>. Uses <code>String.valueOf()</code> to convert   * to <code>String</code>.   *   * @param fnum the <code>float</code> to convert and append   * @return this <code>StringBuffer</code>   * @see String#valueOf(float)   */  public StringBuffer append(float fnum)  {    return append(Float.toString(fnum));  }  /**   * Append the <code>String</code> value of the argument to this   * <code>StringBuffer</code>. Uses <code>String.valueOf()</code> to convert   * to <code>String</code>.   *   * @param dnum the <code>double</code> to convert and append   * @return this <code>StringBuffer</code>   * @see String#valueOf(double)   */  public StringBuffer append(double dnum)  {    return append(Double.toString(dnum));  }  /**   * Delete characters from this <code>StringBuffer</code>.   * <code>delete(10, 12)</code> will delete 10 and 11, but not 12. It is   * harmless for end to be larger than length().   *   * @param start the first character to delete   * @param end the index after the last character to delete   * @return this <code>StringBuffer</code>   * @throws StringIndexOutOfBoundsException if start or end are out of bounds   * @since 1.2   */  public synchronized StringBuffer delete(int start, int end)  {    if (start < 0 || start > count || start > end)      throw new StringIndexOutOfBoundsException(start);    if (end > count)      end = count;    // This will unshare if required.    ensureCapacity_unsynchronized(count);    if (count - end != 0)      VMSystem.arraycopy(value, end, value, start, count - end);    count -= end - start;    return this;  }  /**   * Delete a character from this <code>StringBuffer</code>.   *   * @param index the index of the character to delete   * @return this <code>StringBuffer</code>   * @throws StringIndexOutOfBoundsException if index is out of bounds   * @since 1.2   */  public StringBuffer deleteCharAt(int index)  {    return delete(index, index + 1);  }  /**   * Replace characters between index <code>start</code> (inclusive) and   * <code>end</code> (exclusive) with <code>str</code>. If <code>end</code>   * is larger than the size of this StringBuffer, all characters after   * <code>start</code> are replaced.   *   * @param start the beginning index of characters to delete (inclusive)   * @param end the ending index of characters to delete (exclusive)   * @param str the new <code>String</code> to insert   * @return this <code>StringBuffer</code>   * @throws StringIndexOutOfBoundsException if start or end are out of bounds   * @throws NullPointerException if str is null   * @since 1.2   */  public synchronized StringBuffer replace(int start, int end, String str)  {    if (start < 0 || start > count || start > end)      throw new StringIndexOutOfBoundsException(start);    int len = str.count;    // Calculate the difference in 'count' after the replace.    int delta = len - (end > count ? count : end) + start;    ensureCapacity_unsynchronized(count + delta);    if (delta != 0 && end < count)      VMSystem.arraycopy(value, end, value, end + delta, count - end);    str.getChars(0, len, value, start);    count += delta;    return this;  }  /**   * Creates a substring of this StringBuffer, starting at a specified index   * and ending at the end of this StringBuffer.   *   * @param beginIndex index to start substring (base 0)   * @return new String which is a substring of this StringBuffer   * @throws StringIndexOutOfBoundsException if beginIndex is out of bounds   * @see #substring(int, int)   * @since 1.2   */  public String substring(int beginIndex)  {    return substring(beginIndex, count);  }  /**   * Creates a substring of this StringBuffer, starting at a specified index   * and ending at one character before a specified index. This is implemented   * the same as <code>substring(beginIndex, endIndex)</code>, to satisfy   * the CharSequence interface.   *   * @param beginIndex index to start at (inclusive, base 0)   * @param endIndex index to end at (exclusive)   * @return new String which is a substring of this StringBuffer   * @throws IndexOutOfBoundsException if beginIndex or endIndex is out of   *         bounds   * @see #substring(int, int)   * @since 1.4   */  public CharSequence subSequence(int beginIndex, int endIndex)  {    return substring(beginIndex, endIndex);  }  /**   * Creates a substring of this StringBuffer, starting at a specified index   * and ending at one character before a specified index.   *   * @param beginIndex index to start at (inclusive, base 0)   * @param endIndex index to end at (exclusive)   * @return new String which is a substring of this StringBuffer   * @throws StringIndexOutOfBoundsException if beginIndex or endIndex is out   *         of bounds   * @since 1.2   */  public synchronized String substring(int beginIndex, int endIndex)  {    int len = endIndex - beginIndex;    if (beginIndex < 0 || endIndex > count || endIndex < beginIndex)      throw new StringIndexOutOfBoundsException();    if (len == 0)      return "";    // Don't copy unless substring is smaller than 1/4 of the buffer.    boolean share_buffer = ((len << 2) >= value.length);    if (share_buffer)      this.shared = true;    // Package constructor avoids an array copy.    return new String(value, beginIndex, len, share_buffer);  }  /**   * Insert a subarray of the <code>char[]</code> argument into this   * <code>StringBuffer</code>.   *   * @param offset the place to insert in this buffer   * @param str the <code>char[]</code> to insert   * @param str_offset the index in <code>str</code> to start inserting from   * @param len the number of characters to insert   * @return this <code>StringBuffer</code>   * @throws NullPointerException if <code>str</code> is <code>null</code>   * @throws StringIndexOutOfBoundsException if any index is out of bounds   * @since 1.2   */  public synchronized StringBuffer insert(int offset,                                          char[] str, int str_offset, int len)  {    if (offset < 0 || offset > count || len < 0        || str_offset < 0 || str_offset > str.length - len)      throw new StringIndexOutOfBoundsException();    ensureCapacity_unsynchronized(count + len);    VMSystem.arraycopy(value, offset, value, offset + len, count - offset);    VMSystem.arraycopy(str, str_offset, value, offset, len);    count += len;    return this;  }  /**   * Insert the <code>String</code> value of the argument into this   * <code>StringBuffer</code>. Uses <code>String.valueOf()</code> to convert   * to <code>String</code>.   *   * @param offset the place to insert in this buffer   * @param obj the <code>Object</code> to convert and insert   * @return this <code>StringBuffer</code>   * @exception StringIndexOutOfBoundsException if offset is out of bounds   * @see String#valueOf(Object)   */  public StringBuffer insert(int offset, Object obj)  {    return insert(offset, obj == null ? "null" : obj.toString());  }  /**   * Insert the <code>String</code> argument into this   * <code>StringBuffer</code>. If str is null, the String "null" is used   * instead.   *   * @param offset the place to insert in this buffer   * @param str the <code>String</code> to insert   * @return this <code>StringBuffer</code>   * @throws StringIndexOutOfBoundsException if offset is out of bounds   */  public synchronized StringBuffer insert(int offset, String str)  {    if (offset < 0 || offset > count)      throw new StringIndexOutOfBoundsException(offset);    if (str == null)      str = "null";    int len = str.count;    ensureCapacity_unsynchronized(count + len);    VMSystem.arraycopy(value, offset, value, offset + len, count - offset);    str.getChars(0, len, value, offset);    count += len;    return this;  }  /**   * Insert the <code>CharSequence</code> argument into this   * <code>StringBuffer</code>.  If the sequence is null, the String   * "null" is used instead.   *   * @param offset the place to insert in this buffer   * @param sequence the <code>CharSequence</code> to insert   * @return this <code>StringBuffer</code>   * @throws IndexOutOfBoundsException if offset is out of bounds   * @since 1.5   */  public synchronized StringBuffer insert(int offset, CharSequence sequence)  {    if (sequence == null)      sequence = "null";    return insert(offset, sequence, 0, sequence.length());  }  /**   * Insert a subsequence of the <code>CharSequence</code> argument into this   * <code>StringBuffer</code>.  If the sequence is null, the String   * "null" is used instead.   *   * @param offset the place to insert in this buffer

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美午夜精品久久久久久超碰| 国产精品美女久久久久久久| 国产视频一区不卡| 亚洲综合男人的天堂| 国产精品996| 欧美一级一区二区| 亚洲美女视频在线| 国产成人av在线影院| 日韩一区二区在线观看| 亚洲欧美日韩一区二区| 岛国精品一区二区| 久久免费偷拍视频| 免费人成在线不卡| 欧美精品1区2区3区| 一区二区三区精品| 99re成人在线| 综合婷婷亚洲小说| 成人美女视频在线观看18| 精品处破学生在线二十三| 日本网站在线观看一区二区三区| 欧美亚洲国产一区在线观看网站| 国产精品传媒视频| 成人小视频免费观看| 国产欧美日韩另类视频免费观看| 国产一区二区视频在线播放| 亚洲精品在线观看网站| 蜜臀久久99精品久久久久宅男 | 亚洲一区精品在线| 一本色道综合亚洲| 亚洲欧洲综合另类在线| 色视频一区二区| 亚洲免费在线电影| 在线中文字幕一区| 一区二区三区影院| 欧美色图12p| 日韩专区一卡二卡| 欧美电视剧在线观看完整版| 精品一二三四区| 久久久久99精品一区| 国产91丝袜在线播放九色| 国产精品人人做人人爽人人添| 成人三级在线视频| 亚洲美女电影在线| 欧美日韩国产免费| 另类调教123区| 国产日韩精品一区二区浪潮av| 丁香另类激情小说| 亚洲黄色片在线观看| 欧美久久久久久久久久| 免费的国产精品| 国产女主播在线一区二区| 色狠狠色噜噜噜综合网| 日韩影院精彩在线| 久久久久久夜精品精品免费| 91香蕉视频污| 日韩精品一二三| 久久亚洲精精品中文字幕早川悠里 | 欧美剧情电影在线观看完整版免费励志电影 | 国产麻豆精品95视频| 国产精品色婷婷久久58| 色哟哟国产精品免费观看| 天天影视色香欲综合网老头| 久久奇米777| 色婷婷av一区二区| 精品制服美女久久| 亚洲欧洲美洲综合色网| 欧美挠脚心视频网站| 国产精品主播直播| 亚洲国产精品一区二区久久 | 国产精品久久久久永久免费观看| 在线亚洲一区观看| 国产自产2019最新不卡| 一区二区三区精品久久久| 精品国产乱码久久久久久夜甘婷婷 | 在线精品视频一区二区三四 | 日韩女同互慰一区二区| proumb性欧美在线观看| 日本午夜精品视频在线观看 | 日韩二区三区在线观看| 国产精品乱人伦一区二区| 6080午夜不卡| 色菇凉天天综合网| 国产成人在线视频免费播放| 亚洲大尺度视频在线观看| 欧美高清在线视频| 精品嫩草影院久久| 在线观看日韩毛片| av电影天堂一区二区在线| 久久精品国产99| 亚洲a一区二区| 中文字幕一区二区三中文字幕| 日韩一区二区免费在线电影| 欧美色综合网站| 91蜜桃视频在线| 成人国产电影网| 国产美女在线精品| 国产主播一区二区| 久久狠狠亚洲综合| 免费在线看成人av| 日韩精品一级二级 | 欧美一区二区三区视频免费播放| jizz一区二区| 国产91精品精华液一区二区三区| 蜜臀久久久99精品久久久久久| 亚洲成av人片一区二区三区| 一区二区三区精品在线| 综合久久给合久久狠狠狠97色| 久久久www成人免费毛片麻豆 | 欧美人伦禁忌dvd放荡欲情| a级精品国产片在线观看| 国产999精品久久| 国产成人aaaa| 国产成人免费9x9x人网站视频| 国产在线精品一区二区不卡了| 精一区二区三区| 国产老肥熟一区二区三区| 国产盗摄女厕一区二区三区| 国产伦精品一区二区三区在线观看 | 午夜亚洲福利老司机| 亚洲chinese男男1069| 丝袜亚洲另类丝袜在线| 免播放器亚洲一区| 日本麻豆一区二区三区视频| 青青草成人在线观看| 久久成人羞羞网站| 国产成人夜色高潮福利影视| 国产1区2区3区精品美女| 97精品久久久午夜一区二区三区| 色先锋aa成人| 欧美精品九九99久久| 日韩一级二级三级| 国产蜜臀av在线一区二区三区| 国产精品拍天天在线| 亚洲日本在线天堂| 日韩av一区二区三区| 国产揄拍国内精品对白| 成人视屏免费看| 欧美色老头old∨ideo| 7777精品久久久大香线蕉| 久久亚洲欧美国产精品乐播| 亚洲欧美怡红院| 性久久久久久久久| 国产一区高清在线| 91麻豆国产福利精品| 91麻豆精品国产91久久久| 国产欧美视频在线观看| 亚洲与欧洲av电影| 另类小说一区二区三区| 成人av网站大全| 91精品国产综合久久久久久久久久| 日韩欧美国产麻豆| 亚洲欧美日韩中文播放| 美腿丝袜亚洲色图| 99久久精品费精品国产一区二区| 欧美视频一区二区三区| 久久久久亚洲蜜桃| 亚洲mv大片欧洲mv大片精品| 国产福利精品一区二区| 欧美区视频在线观看| 国产农村妇女毛片精品久久麻豆| 亚洲高清不卡在线观看| 国产精品996| 制服.丝袜.亚洲.另类.中文| 国产精品福利一区二区三区| 老司机午夜精品| 欧美最猛性xxxxx直播| 日本一区二区不卡视频| 免费观看成人av| 在线免费av一区| 国产精品久久久久婷婷二区次| 蜜桃av噜噜一区| 欧美亚洲综合网| 亚洲私人影院在线观看| 国产精品夜夜爽| 日韩女同互慰一区二区| 亚洲国产sm捆绑调教视频| 99免费精品视频| 久久久久久久久99精品| 久久国内精品视频| 91精品国产麻豆| 亚洲一区二区三区视频在线播放| 成人av在线一区二区| 国产日韩精品一区| 国产一区二区视频在线| 日韩一级成人av| 免费观看30秒视频久久| 欧美精品高清视频| 亚洲一区精品在线| 色中色一区二区| 亚洲激情中文1区| 91久久免费观看| 亚洲免费在线看| 一本大道久久a久久综合婷婷| 中文字幕精品—区二区四季| 国产精品一线二线三线| 久久精品视频一区| 成人午夜看片网址| 国产精品电影一区二区| 本田岬高潮一区二区三区| 17c精品麻豆一区二区免费|