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

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

?? stringbuffer.java

?? linux下編程用 編譯軟件
?? 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一区二区三区免费野_久草精品视频
国产91精品免费| 高清不卡一区二区| 亚洲色大成网站www久久九九| 国产视频一区二区三区在线观看| 欧美变态tickling挠脚心| 日韩一二三区不卡| 日韩欧美视频在线| 精品美女在线播放| 国产性色一区二区| 中文字幕不卡在线观看| 国产精品视频在线看| 综合久久久久久| 亚洲免费观看高清在线观看| 亚洲精品视频在线| 午夜激情久久久| 久久精品国产久精国产爱| 久88久久88久久久| 成人激情文学综合网| 99国产精品久| 欧美日本精品一区二区三区| 精品日韩一区二区三区| 国产午夜亚洲精品羞羞网站| 亚洲天堂中文字幕| 亚洲成人av电影在线| 九九视频精品免费| 91亚洲大成网污www| 欧美精选在线播放| 久久嫩草精品久久久久| 亚洲日本va午夜在线电影| 洋洋成人永久网站入口| 精品一区二区免费| 91在线精品秘密一区二区| 欧美三级电影一区| 久久精品亚洲精品国产欧美kt∨| 中文字幕一区二区三区在线不卡 | 蜜桃久久久久久| 国产成人精品一区二区三区四区| 91女神在线视频| 在线成人免费观看| 国产精品入口麻豆九色| 天堂va蜜桃一区二区三区漫画版 | 国产精品国产三级国产专播品爱网| 亚洲乱码国产乱码精品精98午夜 | 欧美激情一区不卡| 亚洲综合免费观看高清完整版在线| 麻豆91精品视频| 一本色道久久综合狠狠躁的推荐| 日韩一区二区精品葵司在线| 亚洲欧美另类在线| 国产一区二区美女诱惑| 欧美日韩中字一区| 亚洲品质自拍视频| 国产成人精品影视| 欧美r级在线观看| 午夜一区二区三区视频| 波多野结衣在线aⅴ中文字幕不卡| 欧美一卡在线观看| 一区二区成人在线视频| 国产91精品在线观看| 在线播放欧美女士性生活| 亚洲日本va在线观看| 成人黄色一级视频| 国产午夜精品一区二区| 精品无码三级在线观看视频| 欧美久久一区二区| 五月婷婷色综合| 欧美在线一区二区三区| 日韩美女视频一区| 成人av第一页| 中文字幕av一区二区三区免费看 | 精品精品欲导航| 日av在线不卡| 欧美一区二区三区系列电影| 亚洲第一成人在线| 欧美人牲a欧美精品| 亚洲激情欧美激情| 91香蕉国产在线观看软件| 国产精品毛片大码女人| 成人中文字幕在线| 国产精品电影一区二区三区| 成人开心网精品视频| 国产日产欧美一区二区三区| 国产黄色精品视频| 国产精品视频在线看| 99riav久久精品riav| 亚洲精品综合在线| 欧美日韩国产综合一区二区| 午夜精品福利在线| 91精品午夜视频| 麻豆视频观看网址久久| 久久久久久久久免费| 岛国精品一区二区| 亚洲欧美乱综合| 337p亚洲精品色噜噜狠狠| 美国十次了思思久久精品导航| 久久夜色精品国产噜噜av| 国产91精品在线观看| 亚洲色大成网站www久久九九| 欧美日精品一区视频| 久久精品二区亚洲w码| 久久美女高清视频 | 亚洲欧美国产三级| 不卡av在线免费观看| 亚洲色图欧洲色图| 日韩一区二区三区四区| 日韩不卡在线观看日韩不卡视频| 久久久亚洲精品石原莉奈| 99视频超级精品| 日韩黄色一级片| 欧美国产一区在线| 欧美日韩一区二区三区在线看| 国产一区二区影院| 亚洲妇女屁股眼交7| 久久久久国色av免费看影院| 在线观看亚洲一区| 国内外精品视频| 亚洲精品写真福利| 2023国产精品自拍| 欧美专区日韩专区| 国产成人精品影院| 日韩二区三区四区| 亚洲色图.com| 国产欧美一区二区在线观看| 欧美精品99久久久**| 成人午夜在线免费| 蜜桃一区二区三区在线| 亚洲一线二线三线视频| 国产三级欧美三级| 欧美一区二区免费| 在线免费av一区| a级精品国产片在线观看| 蜜桃视频第一区免费观看| 一区二区三区中文字幕精品精品| 久久午夜羞羞影院免费观看| 欧美巨大另类极品videosbest| 91视频免费观看| av高清不卡在线| 国产高清成人在线| 国内久久婷婷综合| 久久99热99| 毛片av中文字幕一区二区| 午夜视频在线观看一区二区三区| 一区二区三区成人| 中文字幕一区日韩精品欧美| 国产欧美中文在线| 久久精品日产第一区二区三区高清版 | 日韩欧美一卡二卡| 欧美军同video69gay| 欧美亚洲尤物久久| 欧美亚洲一区三区| 欧美性色黄大片手机版| 在线观看网站黄不卡| 91官网在线观看| 欧美三级欧美一级| 欧美久久久影院| 日韩欧美中文字幕公布| 69p69国产精品| 日韩欧美中文一区二区| 91精品国产欧美一区二区18| 精品久久久久久久一区二区蜜臀| 精品欧美一区二区久久| 欧美mv日韩mv| 日本一区二区三区国色天香| 国产精品美女久久久久aⅴ| 中文字幕在线播放不卡一区| 亚洲另类色综合网站| 一区二区久久久久久| 天天影视涩香欲综合网| 免费av成人在线| 国产剧情一区在线| av亚洲精华国产精华| 一本色道久久综合亚洲91| 欧美日韩免费电影| 精品免费日韩av| 亚洲国产精品精华液2区45| 亚洲人成人一区二区在线观看 | 国产成人亚洲综合a∨婷婷图片 | 亚洲一区二区三区激情| 日韩成人免费在线| 国产成人午夜精品影院观看视频| 成年人国产精品| 欧美美女视频在线观看| 日韩精品中文字幕一区| 国产精品蜜臀av| 天天av天天翘天天综合网| 久久99精品国产麻豆婷婷| 风间由美中文字幕在线看视频国产欧美| 丁香六月综合激情| 欧美美女网站色| 国产精品网站一区| 视频一区中文字幕国产| 国产精品一区二区三区四区| 欧美伊人久久久久久午夜久久久久| 欧美v日韩v国产v| 一二三区精品视频| 国产一区二区三区日韩| 欧美在线999| 国产亚洲精品bt天堂精选| 亚洲一级电影视频| 国产成人av电影在线观看|