Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-1191262

abstract method can override superclass method

XMLWordPrintable

    • 1.0beta
    • sparc
    • solaris_2.4
    • Not verified

      Oakc allows a concrete method to be overridden in a subclass
      by an abstract. The Spec specifically prohibits this in section 4.10.5:
      Classes/Modifiers/Abstract Methods.
      Heres an example.

      class C {
          void foo() { System.out.println("C at "+this.toString()); }
      }
      class D extends C {
          abstract void foo();
      }

      class bug256 extends D{

          void foo(){ System.out.println("bug256 is "+this.toString() ); }

          public static void main( String x[] )
          {
      C c = new bug256();

      c.foo();

          }
      }

            busersunw Btplusnull User (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: