接口 GetChars
- 所有超级接口:
CharSequence
Please implement this interface if your CharSequence has a
getChars() method like the one in String that is faster than
calling charAt() multiple times.
-
方法概要
修饰符和类型方法说明voidgetChars(int start, int end, char[] dest, int destoff) Exactly like String.getChars(): copy charsstartthroughend - 1from this CharSequence intodestbeginning at offsetdestoff.从接口继承的方法 java.lang.CharSequence
charAt, chars, codePoints, isEmpty, length, subSequence, toString
-
方法详细资料
-
getChars
void getChars(int start, int end, char[] dest, int destoff) Exactly like String.getChars(): copy charsstartthroughend - 1from this CharSequence intodestbeginning at offsetdestoff.
-