- 所有超级接口:
CharSequence
- 所有已知实现类:
CharSequenceSubSequence
A char sequence that supports fast copying of its full or partial contents to a char array. May be useful for performance optimizations
-
方法概要
修饰符和类型方法说明voidgetChars(int start, int end, char @NotNull [] dest, int destPos) Copies own character sub-sequence to the given array从接口继承的方法 java.lang.CharSequence
charAt, chars, codePoints, isEmpty, length, subSequence, toString
-
方法详细资料
-
getChars
void getChars(int start, int end, char @NotNull [] dest, int destPos) Copies own character sub-sequence to the given array- 参数:
start- the index where to start taking chars from in this sequenceend- the index where to end taking chars in this sequencedest- the array to put characters intodestPos- the index where to put the characters in the dest array
-