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

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

?? stringbuffer.java

?? gcc的JAVA模塊的源代碼
?? 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., 59 Temple Place, Suite 330, Boston, MA02111-1307 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一区二区三区免费野_久草精品视频
91亚洲国产成人精品一区二区三| 成人av手机在线观看| 亚洲视频一二区| 国产精品欧美久久久久无广告| 国产无人区一区二区三区| 国产视频视频一区| 国产精品萝li| 亚洲精品美国一| 五月综合激情婷婷六月色窝| 丝袜美腿高跟呻吟高潮一区| 亚洲va欧美va天堂v国产综合| 婷婷久久综合九色国产成人| 免费看欧美美女黄的网站| 国产综合久久久久影院| 国产99久久久久| 91免费小视频| 欧美一区二区三区色| 国产亚洲精品aa| 亚洲国产中文字幕| 激情文学综合网| 99国产一区二区三精品乱码| 欧美亚洲精品一区| 欧美精品一区二区三区久久久 | 亚洲www啪成人一区二区麻豆| 亚洲观看高清完整版在线观看 | 91麻豆自制传媒国产之光| 欧美性受极品xxxx喷水| 欧美r级在线观看| 国产精品私房写真福利视频| 午夜视频在线观看一区| 国产真实乱偷精品视频免| 91丨九色丨国产丨porny| 欧美人成免费网站| 欧美国产乱子伦 | 色综合久久久久综合| 欧美高清dvd| 自拍视频在线观看一区二区| 丝袜美腿亚洲一区二区图片| 丁香啪啪综合成人亚洲小说| 在线观看国产91| 国产欧美一区二区精品秋霞影院 | 色国产综合视频| xnxx国产精品| 婷婷六月综合亚洲| 91日韩精品一区| 久久看人人爽人人| 日本一区中文字幕| 99久久免费精品| 久久久91精品国产一区二区三区| 亚洲成人免费在线| 欧美日韩国产色站一区二区三区| 亚洲精品在线免费观看视频| 婷婷中文字幕综合| 欧美性色综合网| 国产精品第13页| 岛国av在线一区| 亚洲精品一区二区三区99| 日本欧美在线观看| 欧美色爱综合网| 一个色综合网站| 欧美zozo另类异族| 美女视频黄频大全不卡视频在线播放 | 中文字幕中文在线不卡住| 青青草国产成人99久久| 欧美色成人综合| 亚洲黄一区二区三区| 不卡欧美aaaaa| 欧美国产1区2区| 国产91高潮流白浆在线麻豆 | 紧缚捆绑精品一区二区| 欧美一区二区三区喷汁尤物| 亚洲大片一区二区三区| 欧美午夜精品理论片a级按摩| 亚洲日本在线看| 91视频.com| 一区二区三区日本| 在线欧美一区二区| 亚洲国产一二三| 欧美日韩亚洲高清一区二区| 亚洲高清一区二区三区| 欧美高清性hdvideosex| 日本成人在线看| 精品福利一区二区三区| 粉嫩久久99精品久久久久久夜| 久久婷婷成人综合色| 国产麻豆成人传媒免费观看| 国产日韩影视精品| 91香蕉视频在线| 天堂va蜜桃一区二区三区漫画版| 欧美精品三级日韩久久| 麻豆中文一区二区| 欧美激情一区在线| 欧美视频在线观看一区二区| 五月激情综合色| 久久久久亚洲综合| 色老头久久综合| 日日欢夜夜爽一区| 国产日本欧洲亚洲| 91国偷自产一区二区三区观看| 天堂一区二区在线免费观看| 久久综合九色综合久久久精品综合| 国产成人h网站| 亚洲国产精品自拍| 久久精品欧美日韩精品| 日本精品视频一区二区| 久久成人免费电影| 亚洲自拍都市欧美小说| 26uuu色噜噜精品一区二区| 91亚洲永久精品| 奇米精品一区二区三区在线观看| 久久九九久精品国产免费直播| 91麻豆国产精品久久| 日本不卡视频在线| 国产精品毛片无遮挡高清| 欧美精品自拍偷拍动漫精品| 国产成人精品免费看| 亚洲一区二区三区四区中文字幕| 久久久久久99精品| 欧美一区二区三级| 91精品91久久久中77777| 精品亚洲成a人在线观看| 亚洲综合在线免费观看| 久久理论电影网| 制服丝袜激情欧洲亚洲| 色综合久久综合网欧美综合网| 麻豆精品视频在线观看免费| 亚洲电影第三页| 国产精品看片你懂得| 久久综合久久鬼色| 3d成人h动漫网站入口| 在线观看网站黄不卡| 99久久精品情趣| 国产河南妇女毛片精品久久久| 日韩国产欧美在线视频| 亚洲国产欧美在线人成| 中文字幕在线不卡一区二区三区| 精品国产乱码久久久久久闺蜜| 欧美日韩高清影院| 在线观看网站黄不卡| 色域天天综合网| 99r精品视频| 99视频精品全部免费在线| 国产成人亚洲综合a∨婷婷| 精品一区二区日韩| 久久99国产精品久久99果冻传媒| 天天色综合成人网| 三级影片在线观看欧美日韩一区二区 | 亚洲视频 欧洲视频| 国产精品久久久久四虎| 中文字幕亚洲欧美在线不卡| 国产午夜精品美女毛片视频| 久久久精品国产免费观看同学| 精品国产百合女同互慰| 久久嫩草精品久久久久| www久久精品| 久久亚洲精华国产精华液| 久久在线观看免费| 国产精品美女久久久久aⅴ国产馆| 国产亚洲一二三区| 国产精品乱码久久久久久| 最新高清无码专区| 午夜久久久久久| 久久69国产一区二区蜜臀| 国产精品自在在线| 国产成人欧美日韩在线电影| 99国产欧美久久久精品| 欧美乱妇15p| 精品国产一区二区亚洲人成毛片| 精品国产成人在线影院| 国产精品无人区| 亚洲一区二区三区在线看| 麻豆精品视频在线观看| 成人小视频在线| 欧美日韩在线电影| www精品美女久久久tv| 亚洲欧美日韩综合aⅴ视频| 视频在线观看国产精品| 精品制服美女久久| 97精品国产露脸对白| 91精品国产色综合久久ai换脸 | 欧美日韩亚洲国产综合| 欧美一级爆毛片| 一区免费观看视频| 日韩av一二三| 99亚偷拍自图区亚洲| 日韩一区二区三免费高清| 亚洲天堂免费看| 久久av资源站| 91福利视频久久久久| 2021国产精品久久精品| 一区二区三区日本| 国产精品456露脸| 欧美美女一区二区三区| 中文字幕av资源一区| 蜜臀av一区二区在线观看| 色视频一区二区| 国产精品色婷婷久久58| 久久av资源网| 欧美一区二区视频观看视频| 亚洲欧美韩国综合色|