public class Example5_8 {
public static void main(String[] args) {
char c[],d[];
String s = "巴西足球队击败德国足球队";
c = new char[2];
/**
* 5,表示从s的第5个字符开始
* 7,表示到s的第7-1个字符结束
* c,表示或缺的字符放到字符数组c中
* 0,表示从c的位置0开始存放
*/
s.getChars(5,7,c,0);
String c1 = new String(c);
System.out.println(c1);
d = new char[s.length()];
s.getChars(7, 12, d, 0);
s.getChars(5, 7, d, 5);
s.getChars(0, 5, d, 7);
String s1 = new String(s);
System.out.println(s1.toString());
}
}
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦