语法
以下是此方法的语法
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
参数
srcBegin
- 要复制的字符串中第一个字符的索引。srcEnd
- 要复制的字符串中最后一个字符后面的索引。dst
- 目标数组。dstBegin
- 目标数组中的起始偏移量。
返回值
- 它不返回任何值,但可能会抛出
IndexOutOfBoundsException
。
1 import java.io.*; 2 3 public class Test { 4 5 public static void main(String args[]) { 6 String Str1 = new String("Welcome to Yiibai.com"); 7 char[] Str2 = new char[7]; 8 try { 9 Str1.getChars(8, 15, Str2, 0); 10 System.out.print("Copied Value = "); 11 System.out.println(Str2); 12 } catch (Exception ex) { 13 System.out.println("Raised exception..."); 14 } 15 } 16 }
执行上面示例代码,得到以下结果:
Copied Value = to Yiib
原文出自【易百教程】,商业转载请联系作者获得授权,非商业转载请保留原文链接:https://www.yiibai.com/java/java_string_getchars.html