Hi All,

I followed the lab exercise for Rewriting Interface under the topic Java Interface and Abstract class of Java Programming with Passion. 
In step 6 I got an error in PersonAnother2() that says "cannot find symbol constructor Person()" is this coded this way on purpose ? Or is this really a syntax error?

Any help/comments will be appreciated.

Thanks.


THESE ARE THE CODES:

package mypersoninterfaceproject;

public class PersonAnother2 extends Person implements PersonInterfaceAnother{
   
    PersonAnother2(){
       
    }
   
    // Implement a new method
    public void newMethod(){
        // Some code
    }
}

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/javaprogrammingwithpassion?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to