(int start, int end)
| 369 | } |
| 370 | |
| 371 | public CharSequence subSequence(int start, int end) { |
| 372 | return substring(start, end); |
| 373 | } |
| 374 | |
| 375 | public void setCharAt(int index, char ch) { |
| 376 | if(index < 0 || index >= length) throw new IndexOutOfBoundsException(); |