java chars_Java getChars() 方法 - Java 基础教程
Java String類
getChars() 方法將字符從字符串復制到目標字符數組。
語法
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
參數
srcBegin — 字符串中要復制的第一個字符的索引。
srcEnd — 字符串中要復制的最后一個字符之后的索引。
dst — 目標數組。
dstBegin — 目標數組中的起始偏移量。
返回值
沒有返回值,但會拋出 IndexOutOfBoundsException 異常。
實例
public class Test {
public static void main(String args[]) {
String Str1 = new String("www.runoob.com");
char[] Str2 = new char[6];
try {
Str1.getChars(4, 10, Str2, 0);
System.out.print("拷貝的字符串為:" );
System.out.println(Str2 );
} catch( Exception ex) {
System.out.println("觸發異常...");
}
}
}
以上程序執行結果為:
拷貝的字符串為:runoob
Java String類
總結
以上是生活随笔為你收集整理的java chars_Java getChars() 方法 - Java 基础教程的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: h5 修改title 微信_微信h5网页
- 下一篇: java final类的写法_重拾Jav