Copies characters from this string into the destination character array. The first character to be copied is at index srcBegin; the last character to be copied is at index srcEnd-1 (thus the total number of characters to be copied is srcEnd-srcBegin). The characters are copied into the subarray of d
(int srcBegin, int srcEnd, char[] dst, int dstBegin)
| 330 | * dstbegin + (srcEnd-srcBegin) - 1 |
| 331 | */ |
| 332 | public native void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin);//{ |
| 333 | // for(int iter = srcBegin ; iter < srcEnd ; iter++) { |
| 334 | // dst[dstBegin] = value[offset + iter]; |
| 335 | // dstBegin++; |