中间调试了好几次,出现了以下问题:
- String写成了Sting
- String定义的时候,没有赋值空的字符串,报错,这点和c有点区别。
- 在写主体的while(true)循环的时候,case 4 用的 break,结果跳不出去,最后用了loopFlag标识才搞定,break是跳出switch并不是while的循环.可以通过增加标识符的方式跳出while这一层。
- “\t” “\n” 等转义字符需要在“ ”中才能解释。
- 本次的输入都是借用Utlity来获取键盘的输入输出库。
- 在用Javac进行编译java文件时,会直接编译其中包含的类库文件Utlity。
- 程序在编写的时候,把需要重复用到的功能封装到类库,可以减少劳动量,提高工作效率,减少bug的出现。
- 可以预见的的是,未来核心的算法功能都是封装好的,其他外部就是直接去调用,那么只是干调用的活,注定内卷比较严重。
// 模仿写的的第一个程序
// An highlighted block
public class FamilyAccount{
public static void main(String[] arge){
// 账户金额
int account = 10000;
// 记录收入支出信息
String information = "";
// 结束循环标志
boolean isFlag = true ;
while(isFlag){
System.out.println("\n-----------------家庭收支记账软件-----------------");
System.out.println(" 1 收支明细 ");
System.out.println(" 2 登记收入 ");
System.out.println(" 3 登记支出 ");
System.out.println(" 4 退 出\n ");
System.out.println(" 请选择(1-4): ");
char inputSelcetion = Utility.readMenuSelection();
switch(inputSelcetion){
case '1':
System.out.println("-----------------当前收支明细记录-----------------");
System.out.println("收支 账户金额 收支金额 说 明 ");
System.out.println(information);
System.out.println("--------------------------------------------------\n");
break;
case '2':
System.out.println("本次收入金额:");
int money = Utility.readNumber();
account += money;
System.out.println("本次收入说明:");
String info = Utility.readString();
information += "收支"+ "\t" + account + "\t\t" + money + "\t\t" + info + "\n";
System.out.println("---------------------登记完成---------------------");
break;
case '3':
System.out.println("本次支出金额:");
int spendMoney = Utility.readNumber();
account -= spendMoney;
System.out.println("本次支出说明:");
String layOut = Utility.readString();
information += "支出"+ "\t" + account + "\t\t" + spendMoney + "\t\t" + layOut + "\n";
System.out.println("---------------------登记完成---------------------");
break;
case '4':
System.out.print("确认是否退出(Y/N):");
char isExit = Utility.readConfirmSelection();
if(isExit == 'Y') isFlag = false;
break;//循环退出
}
}
System.out.print("程序已经退出!");
}
}
// Utility工具类:code
```javascript
import java.util.Scanner;
/**
Utility工具类:
将不同的功能封装为方法,就是可以直接通过调用方法使用它的功能,而无需考虑具体的功能实现细节。
*/
public class Utility {
private static Scanner scanner = new Scanner(System.in);
/**
用于界面菜单的选择。该方法读取键盘,如果用户键入’1’-’4’中的任意字符,则方法返回。返回值为用户键入字符。
*/
public static char readMenuSelection() {
char c;
for (; ; ) {
String str = readKeyBoard(1);
c = str.charAt(0);
if (c != '1' && c != '2' && c != '3' && c != '4') {
System.out.print("选择错误,请重新输入:");
} else break;
}
return c;
}
/**
用于收入和支出金额的输入。该方法从键盘读取一个不超过4位长度的整数,并将其作为方法的返回值。
*/
public static int readNumber() {
int n;
for (; ; ) {
String str = readKeyBoard(4);
try {
n = Integer.parseInt(str);
break;
} catch (NumberFormatException e) {
System.out.print("数字输入错误,请重新输入:");
}
}
return n;
}
/**
用于收入和支出说明的输入。该方法从键盘读取一个不超过8位长度的字符串,并将其作为方法的返回值。
*/
public static String readString() {
String str = readKeyBoard(8);
return str;
}
/**
用于确认选择的输入。该方法从键盘读取‘Y’或’N’,并将其作为方法的返回值。
*/
public static char readConfirmSelection() {
char c;
for (; ; ) {
String str = readKeyBoard(1).toUpperCase();
c = str.charAt(0);
if (c == 'Y' || c == 'N') {
break;
} else {
System.out.print("选择错误,请重新输入:");
}
}
return c;
}
private static String readKeyBoard(int limit) {
String line = "";
while (scanner.hasNext()) {
line = scanner.nextLine();
if (line.length() < 1 || line.length() > limit) {
System.out.print("输入长度(不大于" + limit + ")错误,请重新输入:");
continue;
}
break;
}
return line;
}
}