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

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

?? stringbuffer.java

?? gcc的組建
?? JAVA
字號:
// This is a simplified copy of java.lang.StringBuffer with// `synchronized' removed./* StringBuffer.java -- Growable strings   Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version. GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package gnu.gcj.runtime;public final class StringBuffer{  /** 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 java.lang.String#valueOf(boolean)   */  public StringBuffer append (boolean bool)  {    return append (bool ? "true" : "false");  }  /** Append the <code>char</code> to this <code>StringBuffer</code>.   *  @param c the <code>char</code> to append.   *  @return this <code>StringBuffer</code>.   */  public StringBuffer append (char ch)  {    ensureCapacity_unsynchronized (count + 1);    value[count++] = ch;    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 java.lang.String#valueOf(int)   */  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 java.lang.String#valueOf(long)   */  public StringBuffer append (long lnum)  {    return append (Long.toString (lnum));  }  /** 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 java.lang.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 java.lang.String#valueOf(double)   */  public StringBuffer append (double dnum)  {    return append (Double.toString (dnum));  }  /** 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 obj the <code>Object</code> to convert and append.   *  @return this <code>StringBuffer</code>.   *  @see java.lang.String#valueOf(java.lang.Object)   */  public StringBuffer append (Object obj)  {    return append (String.valueOf(obj));  }  /** Append the <code>String</code> to this <code>StringBuffer</code>.   *  @param str the <code>String</code> to append.   *  @return this <code>StringBuffer</code>.   */  public StringBuffer append (String str)  {    if (str == null)      str = "null";    int len = str.length();    ensureCapacity_unsynchronized (count + len);    str.getChars(0, len, value, count);    count += len;    return this;  }  private void ensureCapacity_unsynchronized (int minimumCapacity)  {    if (minimumCapacity > value.length)      {	minimumCapacity = Math.max (minimumCapacity, value.length * 2 + 2);	char[] nb = new char[minimumCapacity];	System.arraycopy(value, 0, nb, 0, count);	value = nb;      }  }  /** Create a new StringBuffer with default capacity 16.   *  @see JLS 20.13.1   */  public StringBuffer ()  {    this (DEFAULT_CAPACITY);  }  /** Create an empty <code>StringBuffer</code> with the specified initial capacity.   *  @param capacity the initial capacity.   */  public StringBuffer (int capacity)  {    count = 0;    value = new char[capacity];  }  /** Create a new <code>StringBuffer</code> with the characters in the specified <code>String</code>.   *  Initial capacity will be the size of the String plus 16.   *  @param str the <code>String</code> to make a <code>StringBuffer</code> out of.   */  public StringBuffer (String str)  {    if (str == null)      str = "null";    count = str.length();    // JLS: The initial capacity of the string buffer is 16 plus the    // length of the argument string.    value = new char[count + DEFAULT_CAPACITY];    str.getChars(0, count, value, 0);  }  /** Convert this <code>StringBuffer</code> to a <code>String</code>.   *  @return the characters in this StringBuffer   */  // This is native because efficient implementation requires avoiding  // the Java protection mechanism.  public native String toString ();  // Index of next available character.  Note that this has  // permissions set this way so that String can get the value.  int count;  // The buffer.  Note that this has permissions set this way so that  // String can get the value.  char[] value;  private final static int DEFAULT_CAPACITY = 16; // JLS 20.13.1}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品一区二区三区老鸭窝| 一区二区三区丝袜| 亚洲欧洲精品天堂一级| 亚洲成人自拍网| 国产一区二区伦理| 欧美久久高跟鞋激| 成人欧美一区二区三区小说| 奇米影视在线99精品| 色综合中文字幕国产| 日韩精品一区二区三区在线| 亚洲最大的成人av| 成人毛片老司机大片| 久久午夜电影网| 日日夜夜精品免费视频| 91浏览器在线视频| 国产精品成人免费精品自在线观看| 乱一区二区av| 欧美人xxxx| 亚洲一级不卡视频| 色播五月激情综合网| 中文字幕中文字幕中文字幕亚洲无线| 精品一区二区在线看| 欧美一卡在线观看| 日韩av电影免费观看高清完整版 | 亚洲欧美国产77777| 国产麻豆精品一区二区| 欧美xxx久久| 免费看欧美女人艹b| 欧美日韩aaa| 婷婷夜色潮精品综合在线| 欧美色男人天堂| 亚洲综合久久av| 色久优优欧美色久优优| 一区二区三区四区在线播放| 91麻豆文化传媒在线观看| 亚洲永久免费av| 91国偷自产一区二区使用方法| 亚洲女性喷水在线观看一区| 99精品欧美一区| 夜夜爽夜夜爽精品视频| 欧美系列在线观看| 婷婷六月综合网| 日韩欧美一级精品久久| 美女网站色91| 国产丝袜美腿一区二区三区| 国产精品系列在线播放| 国产精品私人自拍| 一本久久a久久免费精品不卡| 亚洲视频狠狠干| 97精品国产97久久久久久久久久久久| 亚洲人妖av一区二区| 不卡av电影在线播放| 自拍偷拍国产精品| 欧美亚洲国产bt| 琪琪久久久久日韩精品| 2024国产精品视频| 99麻豆久久久国产精品免费优播| 亚洲天堂网中文字| 欧美日本一区二区三区四区| 日韩经典一区二区| 亚洲精品在线三区| 99re视频精品| 老司机免费视频一区二区三区| 久久精品人人做人人综合| 99热99精品| 日韩av午夜在线观看| 欧美高清在线视频| 91在线视频免费91| 日韩电影在线一区| 国产亚洲成年网址在线观看| 色综合久久久网| 精品一区二区三区不卡| 亚洲欧洲另类国产综合| 欧美一区二区女人| 91影院在线观看| 国内欧美视频一区二区| 老汉av免费一区二区三区| 国产精品美女久久久久aⅴ| 欧美日韩一区二区三区不卡| 国产精品亚洲午夜一区二区三区| 亚洲欧美偷拍另类a∨色屁股| 欧美一区二区网站| 99精品国产热久久91蜜凸| 久久电影网站中文字幕 | 五月激情丁香一区二区三区| 久久综合九色综合欧美98| 91黄视频在线观看| 成人永久免费视频| 美女任你摸久久| 亚洲尤物在线视频观看| 久久精品夜色噜噜亚洲a∨| 欧美日韩另类一区| 91在线视频播放地址| 激情都市一区二区| 亚洲v精品v日韩v欧美v专区 | 久久se这里有精品| 一区二区三区四区激情| 国产欧美日韩在线观看| 日韩欧美中文字幕制服| 在线区一区二视频| 99久久综合狠狠综合久久| 激情欧美日韩一区二区| 日日嗨av一区二区三区四区| 一区二区三区四区中文字幕| 国产精品午夜久久| 中文字幕av在线一区二区三区| 欧美大白屁股肥臀xxxxxx| 精品视频999| 欧美午夜一区二区三区| 欧美成人欧美edvon| 欧美喷潮久久久xxxxx| 在线观看日韩av先锋影音电影院| 99久久国产综合精品麻豆| 国产高清不卡一区二区| 国产精品一区二区三区99| 麻豆精品国产传媒mv男同| 日韩激情视频网站| 美女精品一区二区| 狠狠狠色丁香婷婷综合激情 | 欧美日韩高清影院| 精品视频在线免费看| 欧美日韩在线直播| 欧美日韩二区三区| 欧美一卡二卡在线观看| 日韩精品中文字幕在线一区| 日韩三级中文字幕| 精品国产91九色蝌蚪| 国产视频亚洲色图| 中文字幕精品三区| 亚洲免费在线观看视频| 亚洲激情成人在线| 五月综合激情网| 日本成人中文字幕| 国产在线精品免费| 成人性生交大合| 97se亚洲国产综合自在线观| 在线免费观看不卡av| 欧美情侣在线播放| 26uuu色噜噜精品一区二区| 国产精品人人做人人爽人人添| 成人欧美一区二区三区黑人麻豆| 一区二区三区在线看| 日本亚洲欧美天堂免费| 国产成人精品亚洲午夜麻豆| 99久久国产免费看| 欧美精品日韩精品| 久久久久九九视频| 亚洲品质自拍视频网站| 三级欧美在线一区| 国产不卡一区视频| 欧美性受xxxx黑人xyx| xfplay精品久久| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 亚洲午夜在线视频| 狠狠色丁香婷综合久久| 一本到不卡免费一区二区| 日韩欧美卡一卡二| 亚洲三级久久久| 美女www一区二区| 色一区在线观看| 精品女同一区二区| 亚洲免费资源在线播放| 色系网站成人免费| 久久综合色婷婷| 亚洲超碰精品一区二区| 国产不卡在线播放| 欧美一区二区免费| 一区二区视频在线看| 国产精品自拍在线| 正在播放一区二区| 亚洲欧洲制服丝袜| 国产大陆a不卡| 欧美日韩精品一区视频| 一区二区中文视频| 国产麻豆视频精品| 日韩亚洲电影在线| 亚洲福利一二三区| 91在线你懂得| 国产日韩精品一区二区浪潮av| 日本中文一区二区三区| 色成人在线视频| 一区视频在线播放| 成人一级片网址| 久久综合99re88久久爱| 日韩av电影天堂| 欧美日韩久久不卡| 亚洲综合激情另类小说区| 成人国产精品免费观看| 国产亲近乱来精品视频| 狠狠色丁香久久婷婷综| 日韩欧美国产综合在线一区二区三区| 亚洲夂夂婷婷色拍ww47| 91久久香蕉国产日韩欧美9色| 国产精品免费丝袜| 东方aⅴ免费观看久久av| 精品久久免费看| 黄色日韩网站视频| 亚洲精品一区二区三区影院 | 日韩久久久久久| 美女爽到高潮91|