How do I add "throws" to an anonymous inner class's constructor?
class Foo {
public Foo() throws Exception {
}
}
Becasue this doesn't work
public static void main(String[] args) {
Foo x = new Foo() {
@Override
public Foo() throws Exception {
}
}
}
I'm trying to figure out where to put the "throws" to suppress the compiler warning. Is there a way to do this without using a try/catch block or making a separate class?
I'm not sure what you are trying to accomplish. Note that an anonymous class never has an explicitly declared constructor. This is quite understandable since if it had one, it would need to have a name and hence no longer be anonymous.
If you want to have an anonymous subclass of a class where the constructor might throw, this is not a problem.
Likewise, if you want to initialize the anonymous class with something that might throw, you can do it as well. Remember that definitions of anonymous classes are expressions so they can throw as long as they are surrounded by a
try
-catch
block or the containing method declares the exception to be thrown.