Overview | Namespace | Class | 索引 | Help |
Methods of Class OStringBuffer
- OStringBuffer
- OStringBuffer();
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 建設するs a string 衝撃を和らげるもの with no characters in it and an 初期の capacity of 16 characters.
- OStringBuffer
- OStringBuffer(
const OStringBuffer & value );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 配分するs a new string 衝撃を和らげるもの that 含む/封じ込めるs the same sequence of characters as the string 衝撃を和らげるもの argument.
- Parameters
value a
OStringBuffer
.
- OStringBuffer
- OStringBuffer(
sal_Int32 length );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 建設するs a string 衝撃を和らげるもの with no characters in it and an
初期の capacity 明示するd by the
length
argument. - Parameters
length the 初期の capacity.
- OStringBuffer
- OStringBuffer(
OString value );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 建設するs a string 衝撃を和らげるもの so that it 代表するs the same sequence of characters as the string argument.
- Description
- The 初期の
capacity of the string 衝撃を和らげるもの is
16
加える the length of the string argument. - Parameters
value the 初期の string value.
- 操作者=
- OStringBuffer & 操作者=(
const OStringBuffer & value );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 割り当てる to this a copy of value.
- ~OStringBuffer
- ~OStringBuffer();
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 解放(する) the string data.
- makeStringAndClear
- OString makeStringAndClear();
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Fill the string data in the new string and (疑いを)晴らす the 衝撃を和らげるもの.
- Description
- This method is more efficient than the contructor of the string. It does not copy the 衝撃を和らげるもの.
- Return
- the string 以前 含む/封じ込めるd in the 衝撃を和らげるもの.
- getLength
- sal_Int32 getLength();
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Returns the length (character count) of this string 衝撃を和らげるもの.
- Return
- the number of characters in this string 衝撃を和らげるもの.
- getCapacity
- sal_Int32 getCapacity();
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Returns the 現在の capacity of the String 衝撃を和らげるもの.
- Description
- The capacity is the 量 of 貯蔵 利用できる for newly 挿入するd characters. The real 衝撃を和らげるもの size is 2 bytes longer, because all strings are 0 終結させるd.
- Return
- the 現在の capacity of this string 衝撃を和らげるもの.
- ensureCapacity
- 無効の ensureCapacity(
sal_Int32 minimumCapacity );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 確実にするs that the capacity of the 衝撃を和らげるもの is at least equal to the 明示するd 最小限.
- Description
- The new capacity will be at least as large as the 最大限 of the 現在の length (so that no contents of the 衝撃を和らげるもの is destroyed) and the given minimumCapacity. If the given minimumCapacity is 消極的な, nothing is changed.
- Parameters
minimumCapacity the 最小限 願望(する)d capacity.
- setLength
- 無効の setLength(
sal_Int32 newLength );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 始める,決めるs the length of this String 衝撃を和らげるもの.
- Description
- If the
newLength
argument is いっそう少なく than the 現在の length of the string 衝撃を和らげるもの, the string 衝撃を和らげるもの is truncated to 含む/封じ込める 正確に/まさに the number of characters given by thenewLength
argument.If the
newLength
argument is greater than or equal to the 現在の length, 十分な null characters ('\u0000'
) are appended to the string 衝撃を和らげるもの so that length becomes thenewLength
argument.The
newLength
argument must be greater than or equal to0
. - Parameters
newLength the new length of the 衝撃を和らげるもの.
- charAt
-
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Returns the character at a 明確な/細部 索引 in this string 衝撃を和らげるもの.
- Description
- The first character of a string 衝撃を和らげるもの is at 索引
0
, the next at 索引1
, and so on, for array 索引ing.The 索引 argument must be greater than or equal to
0
, and いっそう少なく than the length of this string 衝撃を和らげるもの. - Parameters
索引 the 索引 of the 願望(する)d character.
- Return
- the character at the 明示するd 索引 of this string 衝撃を和らげるもの.
- 操作者 const sal_Char *
- 操作者 const sal_Char *();
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Return a null 終結させるd character array.
- getStr
- const sal_Char * getStr();
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Return a null 終結させるd character array.
- setCharAt
- OStringBuffer & setCharAt(
sal_Int32 索引, sal_Char ch );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- The character at the 明示するd 索引 of this string 衝撃を和らげるもの is 始める,決める
to
ch
. - Description
- The 索引 argument must be greater than or equal to
0
, and いっそう少なく than the length of this string 衝撃を和らげるもの. - Parameters
索引 the 索引 of the character to 修正する.
ch the new character.
- append
- OStringBuffer & append(
const OString & str );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string to this string 衝撃を和らげるもの.
- Description
- The characters of the
String
argument are appended, in order, to the contents of this string 衝撃を和らげるもの, 増加するing the length of this string 衝撃を和らげるもの by the length of the argument. - Parameters
str a string.
- Return
- this string 衝撃を和らげるもの.
- append
- OStringBuffer & append(
const sal_Char * str );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string 代表 of the
char
array argument to this string 衝撃を和らげるもの. - Description
- The characters of the array argument are appended, in order, to the contents of this string 衝撃を和らげるもの. The length of this string 衝撃を和らげるもの 増加するs by the length of the argument.
- Parameters
str the characters to be appended.
- Return
- this string 衝撃を和らげるもの.
- append
- OStringBuffer & append(
const sal_Char * str, sal_Int32 len );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string 代表 of the
char
array argument to this string 衝撃を和らげるもの. - Description
- Characters of the character array
str
are appended, in order, to the contents of this string 衝撃を和らげるもの. The length of this string 衝撃を和らげるもの 増加するs by the value oflen
. - Parameters
str the characters to be appended; must be 非,不,無-null, and must point to at least len characters
len the number of characters to append; must be 非,不,無-消極的な
- Return
- this string 衝撃を和らげるもの.
- append
- OStringBuffer & append(
sal_Bool b );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string 代表 of the
sal_Bool
argument to the string 衝撃を和らげるもの. - Description
- The argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then appended to this string 衝撃を和らげるもの. - Parameters
b a
sal_Bool
.- Return
- this string 衝撃を和らげるもの.
- append
- OStringBuffer & append(
sal_Char c );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string 代表 of the
char
argument to this string 衝撃を和らげるもの. - Description
- The argument is appended to the contents of this string 衝撃を和らげるもの.
The length of this string 衝撃を和らげるもの 増加するs by
1
. - Parameters
ch a
char
.- Return
- this string 衝撃を和らげるもの.
- append
- OStringBuffer & append(
sal_Int32 i, sal_Int16 radix = 10 );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string 代表 of the
sal_Int32
argument to this string 衝撃を和らげるもの. - Description
- The argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then appended to this string 衝撃を和らげるもの. - Parameters
i an
sal_Int32
.- Return
- this string 衝撃を和らげるもの.
- append
- OStringBuffer & append(
sal_Int64 l, sal_Int16 radix = 10 );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string 代表 of the
long
argument to this string 衝撃を和らげるもの. - Description
- The argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then appended to this string 衝撃を和らげるもの. - Parameters
l a
long
.- Return
- this string 衝撃を和らげるもの.
- append
- OStringBuffer & append(
float f );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string 代表 of the
float
argument to this string 衝撃を和らげるもの. - Description
- The argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then appended to this string 衝撃を和らげるもの. - Parameters
f a
float
.- Return
- this string 衝撃を和らげるもの.
- append
- OStringBuffer & append(
二塁打 d );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- Appends the string 代表 of the
二塁打
argument to this string 衝撃を和らげるもの. - Description
- The argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then appended to this string 衝撃を和らげるもの. - Parameters
d a
二塁打
.- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer & 挿入する(
sal_Int32 相殺する, const OString & str );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string into this string 衝撃を和らげるもの.
- Description
- The characters of the
String
argument are 挿入するd, in order, into this string 衝撃を和らげるもの at the 示すd 相殺する. The length of this string 衝撃を和らげるもの is 増加するd by the length of the argument.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
str a string.
- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer & 挿入する(
sal_Int32 相殺する, const sal_Char * str );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string 代表 of the
char
array argument into this string 衝撃を和らげるもの. - Description
- The characters of the array argument are 挿入するd into the
contents of this string 衝撃を和らげるもの at the position 示すd by
相殺する
. The length of this string 衝撃を和らげるもの 増加するs by the length of the argument.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
ch a character array.
- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer & 挿入する(
sal_Int32 相殺する, const sal_Char * str, sal_Int32 len );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string 代表 of the
char
array argument into this string 衝撃を和らげるもの. - Description
- The characters of the array argument are 挿入するd into the
contents of this string 衝撃を和らげるもの at the position 示すd by
相殺する
. The length of this string 衝撃を和らげるもの 増加するs by the length of the argument.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
ch a character array.
len the number of characters to append.
- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer & 挿入する(
sal_Int32 相殺する, sal_Bool b );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string 代表 of the
sal_Bool
argument into this string 衝撃を和らげるもの. - Description
- The second argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then 挿入するd into this string 衝撃を和らげるもの at the 示すd 相殺する.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
b a
sal_Bool
.- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer & 挿入する(
sal_Int32 相殺する, sal_Char c );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string 代表 of the
char
argument into this string 衝撃を和らげるもの. - Description
- The second argument is 挿入するd into the contents of this string
衝撃を和らげるもの at the position 示すd by
相殺する
. The length of this string 衝撃を和らげるもの 増加するs by one.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
ch a
char
.- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer & 挿入する(
sal_Int32 相殺する, sal_Int32 i, sal_Int16 radix = 10 );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string 代表 of the second
sal_Int32
argument into this string 衝撃を和らげるもの. - Description
- The second argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then 挿入するd into this string 衝撃を和らげるもの at the 示すd 相殺する.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
b an
sal_Int32
.- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer & 挿入する(
sal_Int32 相殺する, sal_Int64 l, sal_Int16 radix = 10 );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string 代表 of the
long
argument into this string 衝撃を和らげるもの. - Description
- The second argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then 挿入するd into this string 衝撃を和らげるもの at the 示すd 相殺する.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
b a
long
.- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer 挿入する(
sal_Int32 相殺する, float f );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string 代表 of the
float
argument into this string 衝撃を和らげるもの. - Description
- The second argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then 挿入するd into this string 衝撃を和らげるもの at the 示すd 相殺する.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
b a
float
.- Return
- this string 衝撃を和らげるもの.
- 挿入する
- OStringBuffer & 挿入する(
sal_Int32 相殺する, 二塁打 d );
事実上の abstract const volatile template static inline C-結合,連鎖 NO NO NO NO NO NO YES NO
- 要約
- 挿入するs the string 代表 of the
二塁打
argument into this string 衝撃を和らげるもの. - Description
- The second argument is 変えるd to a string as if by the method
String.valueOf
, and the characters of that string are then 挿入するd into this string 衝撃を和らげるもの at the 示すd 相殺する.The 相殺する argument must be greater than or equal to
0
, and いっそう少なく than or equal to the length of this string 衝撃を和らげるもの. - Parameters
相殺する the 相殺する.
b a
二塁打
.- Return
- this string 衝撃を和らげるもの.
最高の,を越す of Page
Copyright © 2012, The Apache ソフトウェア 創立/基礎, Licensed under the Apache License, 見解/翻訳/版 2.0. Apache, the Apache feather logo, Apache OpenOffice and OpenOffice.org are trademarks of The Apache ソフトウェア 創立/基礎. Other 指名するs may be trademarks of their 各々の owners.