上一篇:IO实战篇:文件保存 | 带你学《Java语言高级特性》之七十三
本节将带着读者开发实际案例,结合Arrays类和StringBuffer类,实现对字符串的逆序输出操作。
【本节目标】
通过阅读本节内容,你将复习Arrays类和StringBuffer类的相关知识,与之前的案例设计模式一样,通过简单的控制台菜单设计和工厂模式完成对输入字符串的追加输入和逆序显示功能。
字符串逆序显示
从键盘传入多个字符串到程序中,并将它们按逆序输出在屏幕上。
本程序中应该考虑到如下的集中设计:
1.既然字符串的内容可以随时修改,那么最好建立一个StringBuffer做保存;
2.在进行数据处理的时候应该由用户自己来决定是否继续输入;
1、定义字符串的操作标准:
public interface IStringService {
public void append(String str);//追加数据
public String[] reverse();//反转处理
}
2、实现子类里使用StringBuffer来操作:
public class StringServiceImpl implements IStringService {
private StringBuffer data = new StringBuffer();
@Override
public void append(String s) {
this.data.append(s).append("|");
}
@Override
public String[] reverse() {
String result [] = data.toString().split("\\|");
int center = result.length / 2;
int head = 0;
int tail = result.length - 1;
for (int x = 0; x < center; x++) {
String tmp = result[head];
result[head] = result[tail];
result[tail] = tmp;
}
return result;
}
}
3、定义工厂类:
public class Factory {
private Factory() {}
public static IStringService getInstance() {
return new StringServiceImpl();
}
}
4、定义一个Menu处理类,采用交互式的界面形式完成处理:
public class Menu {
private IStringService stringService;
public Menu() {
this.stringService = Factory.getInstance();
this.choose();
}
public void choose() {
this.show();
String choose = InputUtil.getStr("请进行选择");
switch (choose) {
case "1":{ //接收输入数据
String str = InputUtil.getStr("请输入字符串数据:");
this.stringService.append(str);//进行数据的保存
choose();//重复出现
}
case "2":{ //逆序显示数据
String[] res = stringService.reverse();
System.out.println(Arrays.toString(res));//输出
choose();//重复出现
}
case "0":{
System.out.println("下次再见,拜拜!");
System.exit(1);
}
default:{
System.out.println("您输入了非法的选项,无法进行处理,歉意确认后再次执行程序!");
choose();
}
}
}
public void show() {
System.out.println("【1】追加字符串数据\n");
System.out.println("【2】逆序显示所有的字符串数据\n");
System.out.println("【0】结束程序执行。");
System.out.println("\n\n\n");
}
}
5、编写测试类:
public class IOCaseDemo {
public static void main(String[] args) {
new Menu();//启动程序界面
}
}
运行结果:
【1】追加字符串数据
【2】逆序显示所有的字符串数据
【0】结束程序执行。
请进行选择1
请输入字符串数据:hello
【1】追加字符串数据
【2】逆序显示所有的字符串数据
【0】结束程序执行。
请进行选择1
请输入字符串数据:world
【1】追加字符串数据
【2】逆序显示所有的字符串数据
【0】结束程序执行。
请进行选择1
请输入字符串数据:mldn
【1】追加字符串数据
【2】逆序显示所有的字符串数据
【0】结束程序执行。
请进行选择1
请输入字符串数据:nihao
【1】追加字符串数据
【2】逆序显示所有的字符串数据
【0】结束程序执行。
请进行选择2
[hello, world, mldn, nihao]
【1】追加字符串数据
【2】逆序显示所有的字符串数据
【0】结束程序执行。
请进行选择0
下次再见,拜拜!
想学习更多的Java的课程吗?从小白到大神,从入门到精通,更多精彩不容错过!免费为您提供更多的学习资源。
本内容视频来源于阿里云大学