**I have to write a class encapsulating a course. Where a course is assumed to have three attributes: a code name, a description and number of credits. I must include a constructor, the accessors and mutators, and methods toString and equals.
As part of this assignment, I have to write a client class to test all the methods in the Course class. I believe I have the Course class finished but am having trouble writing the client. For everything I try I get the error "Non-Static variable this can not be referenced from a static context". What am I doing wrong?**
Ok, I have rewritten my code. I am still unsure about how to get the mutator methods to work and not sure how to ask the user for input to set all the values for a new course and then output them to the screen while using accessor and mutator methods. Please help me guys. Thanks
public class ManualClass
{
public static void main(String[] args)
{
Course compSci = new Test2().new Course("Comp Sci","IT1101",3.0);
System.out.println(compSci+ "\n");
Course dave = new Test2().new Course("Hist1111","World History",4.0);
System.out.print(dave.getCourseCode() + " " + dave.getDescription()
+ " " + dave.getCreditHours() + "\n");
}
public class Course
{
//Instance Variables
private String courseCode;
private String description;
private Double creditHours;
public Course()
{
courseCode = null;
creditHours = 0.0;
description = null;
}
//Constructor
public Course(String courseCode, String description, double creditHours)
{
this.courseCode = courseCode;
this.description = description;
this.creditHours = creditHours;
}
//Accessors (Getters)
public String getCourseCode()
{
return courseCode;
}
public String getDescription()
{
return description;
}
public double getCreditHours()
{
return creditHours;
}
//Mutators (Setters)
public void setCourseCode(String CourseCode)
{
this.courseCode = courseCode;
}
public void setDescription(String description)
{
this.description = description;
}
public void setCreditHours(double creditHours)
{
this.creditHours = creditHours;
}
// toString Method
public String toString()
{
DecimalFormat creditsFormat = new DecimalFormat ("#0.0");
return "Code: " + courseCode + "; Description: "
+ description + "; creditHours: "
+ creditsFormat.format(creditHours);
}
// Equals Method
public boolean equals(Object o)
{
if (!(o instanceof Course))
return false;
else
{
Course objCourse = (Course) o;
if (courseCode.equals(objCourse.courseCode)
&& description == objCourse.description
&& creditHours == objCourse.creditHours)
return true;
else
return false;
}
}
}
}
:). Also, at what line do you get the error you mention? The compiler should tell you. – halfer Jan 17 at 17:59Manual_ClassandCourseinto two independent classes. That is,Courseis outside ofManual_Class. Also, as a style note, I would makeManual_ClassintoManualClass. Most people don't use_in class names. – Bryan Glazer Jan 17 at 21:19