Java 中的getChars()方法

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.mybj123.com");
        char[] Str2 = new char[7];

        try {
            Str1.getChars(4, 11, Str2, 0);
            System.out.print("拷贝的字符串为:" );
            System.out.println(Str2 );
        } catch( Exception ex) {
            System.out.println("触发异常...");
        }
    }
}

以上程序执行结果为:

拷贝的字符串为:mybj123

「点点赞赏,手留余香」

0

给作者打赏,鼓励TA抓紧创作!

微信微信 支付宝支付宝

还没有人赞赏,快来当第一个赞赏的人吧!

声明:
1. 本站所有文章教程及资源素材均来源于网络与用户分享或为本站原创,仅限用于学习和研究。
2. 如果内容损害你的权益请联系客服QQ:1642748312给予处理。
码云笔记 » Java 中的getChars()方法

发表回复

IT互联网行业相关广告投放 更专业 更精准

立即查看 联系我们