- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的任务。我必须创建一个应用程序来显示菜单并根据用户的选择执行相应的操作。这是我的菜单应包含的内容
1. add a new client - keep it as the current client
2. find a client with a given name - keep it as the current client
3. add a service for the current client
4. print the current client's balance
5. print the current client's history of services
6. print all the clients' balances
7. exit [save all the data to a file option and retrieve it back when the program starts]
System.out.println("Welcome to Tracy'S Auto Mechanic Shop!");
do{
System.out.println("\nTracy's Auto Mechanic Shop Main Menu");
System.out.println("------------------------------------");
for(int i = 0; i < choices.length; i++){
System.out.println((i < choices.length-1? ? i+1 : 0) + ". " + choices[i]);
}
System.it.print("Make your choice: ");
choice = input.nextInt();
switch(choice){
case 1:
main_addNewClient();
break;
case 2:
main_SearchClient();
break;
case 3:
main_AddService();
break;
case 4:
main_ViewBalance();
break;
case 5:
main_ViewHistory();
break;
case 6:
main_ViewAll();
break;
case 0:
System.exit(0);
default:
System.out.println("Invalid choice. Try again.");
}
}while(choice != 0);
input.close();
}
到目前为止,我已经创建了菜单,但我一直在添加新客户端。如何将所有信息存储到数组中并保存?我创建了一个类,如底部所示:
class Client{
public String name;
public String email;
public String make;
public int year;
public String vin;
public static void Client(String name, String email, String make, int year, String vin){
this.name = name;
this.email = email;
this.make = make;
this.year = year;
this.vin = vin;
}
}
对于添加新客户端的选项,我在 main 中创建了一个方法
public static void main_addNewClient() {
String name, email, vin, make;
int year;
input.nextLine();
System.out.print("Enter your first name: ");
name = input.nextLine();
System.out.print("Enter your email: ");
email = input.nextLine();
System.out.print("Enter vin: ");
vin = input.nextLine();
System.out.print("Enter make: ");
make = input.nextLine();
System.out.print("Enter year: ");
year = input.nextLine();
但是如何获取所有用户输入并将其存储到数组中?我不知道从哪里开始。
最佳答案
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Exercise {
// list to store your clients
static List<Client> clients = new ArrayList<>();
static class Client{
public String name;
public String email;
public String make;
public int year;
public String vin;
Client(String name, String email, String make, int year, String vin){
this.name = name;
this.email = email;
this.make = make;
this.year = year;
this.vin = vin;
}
}
public static void main_addNewClient() {
String name, email, vin, make;
int year;
Scanner input = new Scanner(System.in);
input.nextLine();
System.out.print("Enter your first name: ");
name = input.nextLine();
System.out.print("Enter your email: ");
email = input.nextLine();
System.out.print("Enter vin: ");
vin = input.nextLine();
System.out.print("Enter make: ");
make = input.nextLine();
System.out.print("Enter year: ");
year = input.nextInt();
// create new client object with input you got
Client c = new Client(name, email, make, year, vin);
// add client to the list
clients.add(c);
}
}
这就是你想知道的吗?这个练习有很多内容。我认为您首先需要构建一个菜单,该菜单将询问用户他想做什么:添加新客户、查找客户等。
关于java - 如何在数组中存储新的客户端信息并能够在java中再次查看它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59869794/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!