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

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

?? stringbuffer.java

?? gcc的組建
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
   * Append the <code>CharSequence</code> value of the argument to this   * <code>StringBuffer</code>.   *   * @param sequence the <code>CharSequence</code> to append   * @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);    System.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)   */  // GCJ LOCAL: this is native for efficiency.  public native StringBuffer append (int 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)      System.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)      System.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);    System.arraycopy(value, offset, value, offset + len, count - offset);    System.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);    System.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());  }  /**

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲乱码日产精品bd| 日韩欧美高清dvd碟片| 亚洲欧美另类久久久精品2019| 黄色小说综合网站| 久久亚洲综合色一区二区三区 | 在线观看网站黄不卡| 亚洲精品免费播放| 欧美老年两性高潮| 美脚の诱脚舐め脚责91| 亚洲国产高清在线观看视频| 91丨porny丨中文| 性做久久久久久免费观看| 日韩欧美在线123| 国产精品亚洲а∨天堂免在线| 中文字幕免费不卡| 在线观看日韩电影| 狠狠色伊人亚洲综合成人| 国产精品免费av| 欧美亚洲国产一区在线观看网站| 偷拍日韩校园综合在线| 欧美精品一区二区三区高清aⅴ| 国产高清精品网站| 亚洲综合免费观看高清完整版在线 | 中文字幕在线一区免费| 91蜜桃网址入口| 蜜乳av一区二区| 国产精品福利一区| 7777精品久久久大香线蕉| 国产一区二三区好的| 国产精品国产三级国产普通话蜜臀| 欧美日韩一区二区三区不卡| 国内精品久久久久影院薰衣草| 国产精品网曝门| 欧美高清你懂得| 9i在线看片成人免费| 男女男精品网站| 亚洲伦理在线精品| 久久精品男人的天堂| 911精品国产一区二区在线| 成人性生交大片免费看中文| 亚洲成a人v欧美综合天堂下载| 中文字幕免费观看一区| 日韩午夜av一区| 在线这里只有精品| 成人激情动漫在线观看| 七七婷婷婷婷精品国产| 依依成人精品视频| 久久久精品中文字幕麻豆发布| 欧美高清激情brazzers| 91网站视频在线观看| 国产精选一区二区三区| 日韩中文字幕不卡| 亚洲精品国产精华液| 中文无字幕一区二区三区| 欧美一区二区在线不卡| 91毛片在线观看| 国产精品自拍毛片| 美女视频一区在线观看| 亚洲国产乱码最新视频| 亚洲免费av观看| 日韩一区在线播放| 国产精品久久久久影院色老大| 久久亚洲精品小早川怜子| 日韩欧美国产综合| 制服丝袜中文字幕一区| 欧美丰满嫩嫩电影| 欧美色欧美亚洲另类二区| 色偷偷一区二区三区| 色婷婷综合在线| 91香蕉视频污| 99re免费视频精品全部| 91免费在线视频观看| 91香蕉国产在线观看软件| 97久久久精品综合88久久| 不卡av免费在线观看| 成人精品视频网站| 波多野洁衣一区| 91片在线免费观看| 欧美在线综合视频| 欧美视频一区在线| 欧美丰满美乳xxx高潮www| 日韩一区二区中文字幕| 精品少妇一区二区三区在线视频| 日韩一区二区三| 精品国产乱码久久| 国产欧美日韩精品a在线观看| 久久蜜桃av一区二区天堂| 国产欧美日韩综合| 亚洲欧美在线高清| 亚洲一二三四区| 日日摸夜夜添夜夜添亚洲女人| 奇米777欧美一区二区| 精品亚洲成a人| 波多野结衣中文字幕一区 | 日本午夜精品一区二区三区电影| 日本女优在线视频一区二区 | 夜夜揉揉日日人人青青一国产精品| 亚洲男女一区二区三区| 一区二区三区四区在线免费观看| 一区二区三区在线视频播放 | www国产精品av| 国产精品人人做人人爽人人添| 自拍偷拍亚洲综合| 婷婷一区二区三区| 国产久卡久卡久卡久卡视频精品| 97久久精品人人做人人爽50路| 欧美日韩国产欧美日美国产精品| 精品日韩成人av| 国产精品美女视频| 视频一区二区三区入口| 国产黄色成人av| 欧美日韩一区二区三区在线| 久久综合九色综合欧美98| 亚洲欧美视频在线观看| 日本aⅴ精品一区二区三区| 不卡av免费在线观看| 在线电影一区二区三区| 欧美国产日产图区| 亚洲高清免费观看高清完整版在线观看| 韩国三级在线一区| 日本精品免费观看高清观看| 亚洲精品在线观| 午夜精品久久久久久| 国产大片一区二区| 91精品视频网| 中文字幕在线观看一区二区| 日本女优在线视频一区二区| 91在线你懂得| 久久影院午夜片一区| 亚洲成av人片| 99久久精品情趣| 久久综合色天天久久综合图片| 亚洲一区二区精品久久av| 丁香婷婷综合五月| 日韩欧美国产电影| 亚洲图片欧美视频| www.亚洲精品| 久久久久久久久免费| 视频一区二区国产| 色婷婷综合久久久久中文一区二区| 久久先锋影音av鲁色资源| 午夜精品一区二区三区免费视频| 成人免费视频一区二区| 欧美精品一区二区高清在线观看| 亚洲一区精品在线| 色8久久人人97超碰香蕉987| 国产亚洲欧美激情| 国产一区二区免费视频| 日韩一区二区三区免费观看| 亚洲一区二区三区在线| 91视频国产观看| 一区在线观看视频| 成人一区二区三区| 欧美激情一区在线观看| 国产揄拍国内精品对白| 欧美电视剧免费全集观看| 日韩av一区二区在线影视| 欧美日韩精品综合在线| 亚洲国产一区二区视频| 欧美色综合天天久久综合精品| 亚洲视频免费在线观看| 97se亚洲国产综合自在线| 久久久不卡网国产精品一区| 国产一区三区三区| 2欧美一区二区三区在线观看视频| 久久精品国产999大香线蕉| 91精品国产麻豆国产自产在线 | 久久综合五月天婷婷伊人| 美女脱光内衣内裤视频久久网站 | 色av成人天堂桃色av| 夜色激情一区二区| 欧美亚洲综合在线| 亚洲成人免费看| 欧美一区二区三区四区五区| 午夜影院久久久| 欧美一区二区国产| 国内精品久久久久影院薰衣草 | 麻豆精品一区二区av白丝在线| 91精品国产一区二区| 麻豆传媒一区二区三区| 久久综合色播五月| 成人avav影音| 夜夜嗨av一区二区三区| 91精品国产手机| 激情久久五月天| 国产亚洲精品7777| 99这里只有精品| 亚洲第一搞黄网站| 欧美本精品男人aⅴ天堂| 国产在线精品免费av| 国产精品福利一区二区三区| 欧洲精品视频在线观看| 蜜桃传媒麻豆第一区在线观看| 国产三级三级三级精品8ⅰ区| av在线不卡网| 午夜电影一区二区| 久久蜜桃一区二区| 日本精品一区二区三区高清| 美女视频黄 久久| 国产精品久久久久久久午夜片|