簡體   English   中英

使用空數組創建方法

[英]Using empty arrays to create methods

得益於出色的stackoverflow用戶的在線幫助,以下是對注冊和刪除學生方法的編輯,以添加到Student數組設置中。 現在就可以使其他方法也起作用。 對這些方面的任何見解都將有所幫助,尤其是對於那些時候的速度和效率。

導入java.util.Scanner;

公立學校{

private Student[] theStudents;

public School() {
    this.theStudents = new Student[] { null };// needs to start out as empty

}

/*
 * next two methods would allow a user to add or drop a student into the
 * student array for the school Also with Enroll student, should be able to
 * assign a class to the student, i.e. Calculas, history, etc
 */
public void enrollStudent(Student newStudent) {
    Student newStudents[] = new Student[theStudents.length+1];
    for (int i = 0; i < theStudents.length; i++)
    {
        newStudents[i] = theStudents[i];
    }
    newStudents[theStudents.length] = newStudent;
    theStudents = newStudents;
}

public void dropStudent(Student dropStudent) {
    Student newStudents[] = new Student[theStudents.length-1];
    for (int i = 0; i > theStudents.length; i--)
    {
        newStudents[i] = theStudents[i];
    }
    newStudents[theStudents.length] = dropStudent;
}

// add Test Score for a student
public double addTestScore(String newStudent, double testScore) {
    testScores[posi] = testScore;
}

/*
 * count the number of students in a given class, not the school
 */
public int countClassSize(String course) {

}

// get average average score of a given class
public double averageAverageScore(String course) {

}

/*
 * add a programming language to only CS students at the school Will need to
 * use the instanceof for proper type casting
 */
public String addProgrammingLanguage(String studentName, String programLanguage) {

}

/*
 * Count the number of students in the school that know a certain
 * programming language, again will need to typecast properly
 */
public int numberThatKnowLanguage(String programLanguage) {

}

public static void main(String[] args) {
    // TODO Auto-generated method stub
    Scanner input = new Scanner(System.in);
    String dropStudent, course;

    System.out.println("Welcome to the School. Please select " + "Option 1 to enroll a regular student, \n "
            + "Option 2 to enroll a CompSci student, \n" + "Option 3 to drop a student, \n"
            + "Option 4 to add test score or programming language, or \n" + "Option 5 to perform class analytics.");
    int Operation = input.nextInt();

    /*
     * Simple UI to add and drop students, will need to set the operation to
     * call the add and drop students to fit them to the Student body array
     * will need to make these two options loop until the user is satisfied
     * with the size of the student body
     */
    if (Operation == 1) {
        System.out.println("Enter the # of regular students that you want to add to the school.");
        int addStudents = input.nextInt();
        /*
         *  Possibly create some type of input array to 
         *  make it easier to enter the students' names
         */
        System.out.println("Please enter the name and course of the student you are enrolling:");
        Student newRegularStudent = (String) input.next();
        course = input.next();
    }

    else if (Operation == 2) {
        System.out.println("Enter the # of CompSci students that you want to add to the school.");
        int addStudents = input.nextInt();
        /*
         * Possibly create some type of input array to make it easier to
         * enter the students' names
         */
        System.out.println("Please enter the name and course of the student you are enrolling:");
        Student newCompSciStudent = (String) input.next();
        course = input.next();
    }

    else if (Operation == 3) {
        System.out.println("Enter the # of students that you want to drop from the school.");
        int dropStudents = input.nextInt();
        /*
         * Possibly create some type of input array to make
         *  it easier to enter the students' names
         */
        System.out.println("Please enter the name of the student you wish to drop from the school:");
        dropStudent = (String) input.next();

        /*
         * After the first two operations, will need to build to the UI to
         * call the other five methods, will need to make it into a
         * while/for loop so user can continue to add information as needed.
         */
    }

    else if (Operation == 4) {
        System.out.println("Enter the # for what you want to add to a student's records."
                + "Enter 1 to enter a test score\n   " + "Enter 2 to enter a programming language, enter 2.");
        int optionNum1 = input.nextInt();
        /*
         *  Possibly create some type of input array 
         *  to make it easier to enter the students' names
         */
        if (optionNum1 == 1) {

        } else if (optionNum1 == 2) {

        }
    }

    else if (Operation == 5) {
        System.out.println("This is the analytics section of this program.\n");

        System.out.println("Enter the # for which of the following analytics options that you want performed: "
                + "Enter 1 to count the # of students for a particular class,\n "
                + "Enter 2 to calculate the average average score for all students take a particular course, or\n "
                + "Enter 3 to count the # of CompSciStudents.");
        int optionNum2 = input.nextInt();
        if (optionNum2 == 1) {
            System.out.println("Enter the course name that you want to know the # of students for.");
            course = input.next();
            Student classSize;
            classSize.countClassSize(course);
        }

        else if (optionNum2 == 2) {
            System.out.println("Enter the course name that you want \n"
                    + "to calculate the average average test value for.");
            course = input.next();
            Student testAvg;
            testAvg.averageAverageScore(course);
        }

        else if (optionNum2 == 3) {
            System.out.println("Count the # of CompSciStudents who know a \n"
                    + "particular programming language by entering that language name now.");
            String programLanguage = input.next();
            CompSciStudent csStudent;
            csStudent.knowsLanguage(programLanguage);
        }
    }
    input.close();
}

}

我不知道這是否是最好的方法,但是如果我是您,我只會創建一個大小更大或更小的新數組,並在每次添加或刪除值時使用舊數組中的值進行填充。 例如:

public void enrollStudent(Student newStudent) {
    Students newStudents[] = new Student[theStudents.length+1];
    for (int i = 0; i < theStudents.length; i++)
    {
        newStudents[i] = theStudents[i];
    }
    newStudents[theStudents.length] = newStudent;
    theStudents = newStudents;
}

效率不是很高,但是,聽起來好像您在做任何需要提高效率的事情。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM