aspose file tools
The moose likes Beginning Java and the fly likes Using super keyword Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Using super keyword" Watch "Using super keyword" New topic
Author

Using super keyword

Roger Fed
Ranch Hand

Joined: Oct 17, 2010
Posts: 82

hello,
I've developed these two classes, they are related by inheritance
when the last line executed in main , i want the "toString()" in the subclass call the "toString()" in the super class
I've tried to put this line "super.toString()" inside the the method in the subclass but it give me syntax error
I'd be grateful if you help me
thanks in advance.
this is main


and this is the GeometricObject class



I Hear I Forget, I See I Remember, I Do I Understand.
Christophe Verré
Sheriff

Joined: Nov 24, 2005
Posts: 14670
    
  11

There shouldn't be any problem. Can you show exactly how and where you wrote it ?


[My Blog]
All roads lead to JavaRanch
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Using super keyword
 
Similar Threads
Triangle Problem
(new to java)variables might not have been initialized
I need help on an equals method
class extension problem
Whyis the error "Exception in thread "main" java.lang.NoSuchMethodError: main"?