Maurice Tutor

(5)

$15/per page/Negotiable

About Maurice Tutor

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Algebra,Applied Sciences See all
Algebra,Applied Sciences,Biology,Calculus,Chemistry,Economics,English,Essay writing,Geography,Geology,Health & Medical,Physics,Science Hide all
Teaching Since: May 2017
Last Sign in: 405 Weeks Ago, 6 Days Ago
Questions Answered: 66690
Tutorials Posted: 66688

Education

  • MCS,PHD
    Argosy University/ Phoniex University/
    Nov-2005 - Oct-2011

Experience

  • Professor
    Phoniex University
    Oct-2001 - Nov-2016

Category > Computer Science Posted 14 Sep 2017 My Price 8.00

object to an ArrayList

How do I go about adding an object to an ArrayList?

Here's my main class:

import java.util.ArrayList;

public class Course {
  
   private String courseName;
   private ArrayList students = new ArrayList<>();
   private int numberOfStudents;
  
   public Course(String courseName) {
       this.courseName = courseName;
   }
  
   public void addStudent(ArrayList students) {
       this.students = students;
       students.add(students);
       numberOfStudents ++;
   }
  
   public ArrayList getStudents() {
       return students;
   }
  
   public int getNumberOfStudents() {
       return numberOfStudents;
   }
  
   public String getCourseName() {
       return courseName;
   }
  
   public void dropStudents(ArrayList students) {
       this.students = students;
       students.remove(students);
       numberOfStudents --;
   }
}

Here is my test class:

public class TestCourse {

   public static void main(String[] args) {
       Course course1 = new Course("Data Structures");
       Course course2 = new Course("Database Systems");
      
       course1.addStudent("Peter Jones");
   }
}

I get that I can't add a string to an ArrayList, but how do I add an object to it?

Answers

(5)
Status NEW Posted 14 Sep 2017 08:09 PM My Price 8.00

Hel-----------lo -----------Sir-----------/Ma-----------dam-----------Tha-----------nk -----------You----------- fo-----------r u-----------sin-----------g o-----------ur -----------web-----------sit-----------e a-----------nd -----------and----------- ac-----------qui-----------sit-----------ion----------- of----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n.P-----------lea-----------se -----------pin-----------g m-----------e o-----------n c-----------hat----------- I -----------am -----------onl-----------ine----------- or----------- in-----------box----------- me----------- a -----------mes-----------sag-----------e I----------- wi-----------ll

Not Rated(0)