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

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

?? stringbuffer.java

?? linux下編程用 編譯軟件
?? 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精品国产麻豆婷婷| 欧美午夜不卡在线观看免费| 国产精品福利电影一区二区三区四区| 国产精品资源在线观看| 日韩午夜在线观看视频| 三级在线观看一区二区| 欧美久久久久免费| 天天综合色天天综合色h| 欧美精选在线播放| 青青青伊人色综合久久| 在线综合+亚洲+欧美中文字幕| 亚洲一二三四久久| 欧美综合视频在线观看| 亚洲一区免费观看| 欧美人与禽zozo性伦| 日本女人一区二区三区| 精品剧情在线观看| 国产乱码精品一区二区三区五月婷 | www.欧美日韩| 国产精品毛片久久久久久| 成人福利在线看| 日本一区二区综合亚洲| 91蝌蚪porny成人天涯| 亚洲午夜精品在线| 日韩欧美一区二区视频| 国产一区二区免费看| 中文字幕一区二区三区在线观看 | 亚洲综合区在线| 欧美体内she精视频| 奇米在线7777在线精品 | 日韩精品中文字幕一区二区三区 | 成人免费看视频| 一区二区三区鲁丝不卡| 91精品国产美女浴室洗澡无遮挡| 看国产成人h片视频| 国产色91在线| 色先锋aa成人| 免费成人美女在线观看| 欧美激情综合在线| 91福利精品第一导航| 麻豆传媒一区二区三区| 国产精品理论片在线观看| 久久婷婷久久一区二区三区| a在线欧美一区| 免费一级欧美片在线观看| 一区在线观看免费| 日韩精品一区二区三区在线播放| 成人动漫av在线| 麻豆精品视频在线观看免费| 亚洲色图制服丝袜| 26uuu国产一区二区三区| 色就色 综合激情| 国产一区视频在线看| 亚洲一区二区三区视频在线| 久久无码av三级| 欧美精品99久久久**| 国产v综合v亚洲欧| 免费日本视频一区| 一片黄亚洲嫩模| 国产欧美精品一区二区色综合| 欧美日韩一区二区三区不卡| 国产成人在线网站| 日本欧美一区二区三区乱码| 亚洲激情综合网| 中文字幕乱码一区二区免费| 欧美精品一卡二卡| 91久久奴性调教| 成人激情开心网| 国产一区二区精品久久99| 亚洲成人av中文| 亚洲精品高清在线观看| 亚洲国产成人自拍| 精品国产亚洲一区二区三区在线观看 | 亚洲婷婷在线视频| 久久这里都是精品| 欧美xxx久久| 欧美高清www午色夜在线视频| 成人在线综合网站| 国产美女精品在线| 久久99久国产精品黄毛片色诱| 日韩精品三区四区| 午夜不卡av在线| 亚洲福利视频导航| 亚洲国产成人91porn| 一区二区三区 在线观看视频| 国产精品久久久久影院老司 | 久久亚区不卡日本| 久久综合色鬼综合色| 欧美一级精品大片| 日韩视频国产视频| 日韩一卡二卡三卡四卡| 4438x成人网最大色成网站| 精品视频一区三区九区| 欧美日韩精品一区视频| 欧美羞羞免费网站| 69堂亚洲精品首页| 欧美一区二区视频在线观看| 欧美一区二区三区视频在线| 91精品欧美福利在线观看| 欧美三级韩国三级日本一级| 欧美日韩电影在线播放| 91麻豆精品国产无毒不卡在线观看| 欧美无乱码久久久免费午夜一区| 欧美伊人久久久久久久久影院 | 国产一区二区三区在线观看免费| 精品一区二区三区日韩| 91香蕉视频mp4| 色老汉av一区二区三区| 欧美日韩一区国产| 欧美一区二区三区的| 久久在线免费观看| 国产精品免费久久久久| 一区二区三区久久| 欧美aaa在线| 国产一区二区0| 97久久超碰国产精品电影| 欧美亚洲动漫制服丝袜| 欧美一区二区三区精品| 欧美激情中文字幕| 亚洲国产你懂的| 麻豆精品视频在线观看| 成人精品视频.| 欧美三级视频在线播放| 日韩欧美国产小视频| 国产精品乱人伦一区二区| 亚洲精选视频免费看| 美女mm1313爽爽久久久蜜臀| 国产成人av网站| 在线看国产日韩| 日韩欧美亚洲国产精品字幕久久久| 欧美国产精品中文字幕| 亚洲18色成人| 国产不卡高清在线观看视频| 色婷婷综合五月| 2023国产精品自拍| 亚洲一区二区三区自拍| 韩国精品在线观看| 欧美亚日韩国产aⅴ精品中极品| 精品国产123| 亚洲自拍偷拍麻豆| 国产精品18久久久久久vr| 在线观看av一区二区| 欧美精品一区二区在线播放| 中文字幕在线观看不卡视频| 麻豆国产精品官网| 欧洲av在线精品| 欧美韩国日本综合| 精品写真视频在线观看| 欧美日韩一区不卡| 中文字幕中文字幕一区二区| 奇米色一区二区| 欧美亚洲禁片免费| 日韩美女精品在线| 国产精品系列在线观看| 日韩久久久精品| 亚洲在线视频免费观看| 不卡视频一二三| 欧美成人bangbros| 日韩综合在线视频| 一本大道久久a久久精二百 | 99精品视频一区二区三区| 日韩一级片网站| 亚洲18影院在线观看| 一本色道久久综合亚洲aⅴ蜜桃 | 成人av网站大全| 精品精品国产高清一毛片一天堂| 亚洲国产一区二区视频| 91老师片黄在线观看| 国产精品视频看| 懂色av中文字幕一区二区三区| 精品成a人在线观看| 美腿丝袜亚洲一区| 日韩一区二区免费在线电影| 亚洲成va人在线观看| 欧美乱妇15p| 亚洲国产精品视频| 欧洲一区二区av| 亚洲综合免费观看高清完整版在线| 成人福利在线看| 亚洲欧洲av色图| av一区二区三区| 亚洲同性同志一二三专区| 色综合天天视频在线观看| 中文字幕一区二区三区在线观看| 9色porny自拍视频一区二区| 国产欧美日韩精品一区| 国产精品亚洲成人| 一色屋精品亚洲香蕉网站| 91理论电影在线观看| 一区二区三区免费网站| 欧美日韩在线一区二区| 日韩国产精品久久| 日韩欧美一区二区不卡| 国产综合色产在线精品| 中文字幕高清一区| 色综合天天综合色综合av| 亚洲精品成人在线| 欧美裸体一区二区三区|