| Author |
compile time errors
|
Venkat Ramsimha
Ranch Hand
Joined: Dec 28, 2004
Posts: 127
|
|
public class Foo { public void doStuff(int y, String s) { } public void moreThings(int x) { } } class Bar extends Foo { public void doStuff(int y, float s) throws IOException { } } Hi all, the above program is giving compile time errors can anybody please correct the above thanks venkat
|
 |
deepu Bhalotia
Ranch Hand
Joined: Apr 19, 2005
Posts: 39
|
|
In Overloading Overloaded method in Subclass can throw any Exception. I think this code is totally valid and should n't throw any compile time error. Can you just provide me.. What is the Error Message.... Deepak
|
 |
 |
|
|
subject: compile time errors
|
|
|