Search:

Type: Posts; User: collegejavastudent

Search: Search took 0.17 seconds.

  1. Re: "Cannot find symbol" compilation error

    Aaah, just realized that I left out the code in which I was going to make that a double...

    Thanks! Don't I feel silly...
  2. Re: "Cannot find symbol" compilation error

    Yes - it's written as

    public Course(String cName, double cStart, double cEnd){
    ...
    }


    The compiler can not find that variable in the Course class.[/QUOTE]
    Just realized, I forgot the...
  3. Re: "Cannot find symbol" compilation error

    ./Fitter.java:56: cannot find symbol
    symbol: constructor Course(java.lang.String,java.lang.String,java.lang.String)
    location: class Course

    Course newCourse = new Course(cName, cStart, cEnd);

    ...
  4. "Cannot find symbol" compilation error

    Hi! I have two errors in my code when I try to compile, in the lines " Course newCourse = new Course(cName, cStart, cEnd);" and "lastEnd = course.getETime;" and I'm not sure why the code is having...
Results 1 to 4 of 4