Search:

Type: Posts; User: michael.duffy31

Search: Search took 0.14 seconds.

  1. Re: Testing Constructor Overloading using Eclipse

    What do you mean by "odd (mis)use of whitespace"? Forgive me if this is a simplistic question, I am a old (30+ years) cobol programmer trying to learn a new language.
  2. Re: Testing Constructor Overloading using Eclipse

    It was static but I get a error message that says "a static method can only be declared in a static or top level type"
  3. Re: Testing Constructor Overloading using Eclipse

    package com.java.src;

    class Point3D {
    double x;
    double y;
    double z;

    Point3D(double ax) {
    x = ax;
    y = 1;
  4. Testing Constructor Overloading using Eclipse

    I created a class/program in Eclipse with no errors. When I go to run it I select "run as" and I only get the option "run configurations" I don't get the option "Java Application".
Results 1 to 4 of 4