| Author |
how to create anonymous inner class for a class without no-arg constructor
|
Karthikeyan Kandasamy
Greenhorn
Joined: Apr 17, 2011
Posts: 14
|
|
If i try to execute the below code, am getting compiler error. I think, its because super class doesnt have no-arg constructor. Is there any way to create anonymous inner class for a class without no-arg constructor?
Code:
-------
Error:
AnonInner.java:23: cannot find symbol
symbol : constructor A()
location: class paraminner.A
A a = new A() {};
^
AnonInner.java:23: cannot find symbol
symbol : constructor A()
location: class paraminner.A
A a = new A() {};
^
Source: - None. While reading about inner classes, i had this question.
Thanks
|
 |
Ashwin Sridhar
Ranch Hand
Joined: Jul 09, 2011
Posts: 272
|
|
Please use Code Tags.
You have overloaded the constructor with A(int i) constructor and hence default no argument constructor is not present. But you try to instantiate by calling the no-arg constructor which doesn't exist.
You could add a no arg constructor explicitly.
|
Ashwin Sridhar
SCJP | SCWCD | OCA
|
 |
Surender Suri
Ranch Hand
Joined: May 28, 2010
Posts: 41
|
|
As henry is repeatedly mentioning in every post , please quote your sources webpage. And also use code tags.
Since you have only constructor with int parameter, you can have the ananomous inner class by passing any int value to the constructor of class A. Example code below.
Save the file as AnonInner.java and when ran it will print "defined in anon inner".
|
Thanks,
Suri
|
 |
Karthikeyan Kandasamy
Greenhorn
Joined: Apr 17, 2011
Posts: 14
|
|
Thanks for your response. I took care of both suggestions about the initial post.
I am able to run my program.
|
 |
Jonas Isberg
Ranch Hand
Joined: Mar 18, 2003
Posts: 118
|
|
|
[Edit: Totally misread the code.]
|
 |
 |
|
|
subject: how to create anonymous inner class for a class without no-arg constructor
|
|
|