Search:

Type: Posts; User: javapenguin

Search: Search took 0.87 seconds.

  1. Replies
    4
    Views
    2,152

    [SOLVED] Re: Cannot Find Constructor

    public abstract class Student {

    private String firstName;
    private String lastName;
    private int studentID;
    private double gPA;
    private String status;
    private String...
  2. Replies
    4
    Views
    2,152

    [SOLVED] Re: Cannot Find Constructor

    I fear you may need a default constructor

    public Student()
    {

    }

    too if you're extending Student.
  3. Replies
    4
    Views
    2,152

    [SOLVED] Re: Cannot Find Constructor

    First off all, you don't have

    public Student()
    {

    }

    Also, I might add, that abstract classes cannot be initialized, at least not to themselves.

    You cannot have
Results 1 to 3 of 3