Please enable JavaScript.
Coggle requires JavaScript to display documents.
StringBuilder (Métodos (tamanho (ensureCapacity(int newLength)…
StringBuilder
Métodos
-
Chars
-
getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
-
-
setCharAt(int index, char ch)
-
-
Adição
-
-
append(char[] str, int offset, int len)
-
-
Inserção
-
insert(int index, char[] str, int offset, int len)
Deleção
delete(int start, int end)
-
-
-
-