java - 如何在我的主类中创建一个 switch 语句,当选择该情况时将在我的程序中运行另一个主类?

标签 java oop switch-statement mainclass

我有多个类别,例如客户、客户、员工、员工、产品、产品。带“s”的程序是主类。我有一个主类,我希望它作为程序的起点。我想要一个 switch 语句。我想询问用户输入 1-3,然后从他们的输入运行该主类。例如,如果输入为 1,它将运行客户主程序等。我该如何执行此操作?

导入java.util.Scanner;

public class Main {

    public static void main(String[] args) throws InputValidationException {

        //run customer add/edit/remove


        int choice = 0;
        while (true) {
            displayMenu();

            switch (choice) {
                case 1:
                    customers.main(null);


                    break;
                case 2:

                    cars.main(null);

                    break;
                case 3:
                    Staff.main(null);

                    break;
            }

        }

    }


    private static void displayMenu() {
        Scanner input;
        {
            input = new Scanner(System.in);
            {
                System.out.println("1. Customers");
                System.out.println("2. Cars");
                System.out.println("3. Staff");

                System.out.println("Which would you like to add/edit: ");
                String choice = input.nextLine();
            }
        }
    }
}


My other classes are fairly similar to this:
import java.util.Scanner;
import java.util.concurrent.CopyOnWriteArrayList;

//creates and array of the customers
public final class customers {
    public static void main(String[] args) throws InputValidationException {

        //add new customer
        CopyOnWriteArrayList<customer> customers = new CopyOnWriteArrayList<>();
        //List will fail in case of remove due to ConcurrentModificationException

        //loop getting input
        //input 'q' to quit

        Scanner input;
        {
            //scanner to get the input

            input = new Scanner(System.in);

            {
                while (true) {
                    //ask user for input and get input
                    System.out.println("Enter id (press 'q' to quit): ");
                    String temp = input.nextLine();
                    if (temp.equals("q")) break;

                    int id = Integer.parseInt(temp);

                    System.out.println("Enter first name:");
                    String firstName = input.nextLine();

                    System.out.println("Enter last name:");
                    String lastName = input.nextLine();



                    //add to array list
                    customers.add(new customer(id, firstName, lastName));


                }

            }
        }

        //Display All
        System.out.println("Current List: ");
        for (customer customer : customers) {
            System.out.println(customer.toString());
        }

        // search
        System.out.println("Enter name to search and display");
        String searchString = input.nextLine();
        for (customer customer : customers) {
            if (customer.search(searchString) != null) {
                System.out.println(customer.toString());
            }
        }


        //Remove
        System.out.println("Enter name to search & remove");
        searchString = input.nextLine();
        for (customer customer : customers) {
            if (customer.search(searchString) != null) {
                System.out.println(customer.toString() + " is removed from the List");
                customers.remove(customer);
            }
        }


    }
}

客户类仅包含变量、setter、getter 和构造函数

最佳答案

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        String input;
        do {
            input = displayMenu();
            switch (input) {
                case "1":
                    customers.main(args);
                    break;
                case "2":
                    cars.main(args);
                    break;
                case "3":
                    Staff.main(args);
                    break;
            }
        } while (!"exit".equals(input));
    }

    private static String displayMenu() {
        Scanner input = new Scanner(System.in);
        System.out.println("1. Customers");
        System.out.println("2. Cars");
        System.out.println("3. Staff");

        System.out.println("Which would you like to add/edit: ");
        return input.nextLine();
    }
}

class customers {
    public static void main(String[] args) {
        System.out.println("hello from 'customers'!");
    }
}

class cars {
    public static void main(String[] args) {
        System.out.println("hello from 'cars'");
    }
}

class Staff {
    public static void main(String[] args) {
        System.out.println("hello from 'Staff'");
    }
}

关于java - 如何在我的主类中创建一个 switch 语句,当选择该情况时将在我的程序中运行另一个主类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56099591/

相关文章:

设置为属性时,Swift 枚举会丢失初始化值吗?

java - Gson异常——de-gson复杂对象

java - java中char变量的计算

javascript - 原型(prototype)对象和对象数组

Objective-C (iOS/ cocoa ) : expand first letter into day of week

c++ - 带有从 VBA 传递的参数的 Switch Case - 参数不兼容

java - ImageIO 线程安全

java - 从 Firebase 获取不进行任何更改的子项

python - Python 是否支持文字对象之类的东西?

JavaScript:公共(public)方法和原型(prototype)