Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Lets say I have a concrete class Class1 and I am creating an anonymous class out of it.

Object a = new Class1(){
        void someNewMethod(){
        }
      };

Now is there any way I could overload the constructor of this anonymous class. Like shown below

Object a = new Class1(){
        void someNewMethod(){
        }
        public XXXXXXXX(int a){
          super();
          System.out.println(a);
        }
      };

With something at xxxxxxxx to name the constructor?

share|improve this question

9 Answers

up vote 70 down vote accepted

From the Java Language Specification, section 15.9.5.1:

An anonymous class cannot have an explicitly declared constructor.

Sorry :(

EDIT: As an alternative, you can create some final local variables, and include an instance initializer in the anonymous class. For example:

public class Test
{
    public static void main(String[] args) throws Exception
    {
        final int fakeConstructorArg = 10;

        Object a = new Object()
        {
            {
                System.out.println("arg = " + fakeConstructorArg);
            }
        };
    }
}

It's grotty, but it might just help you. Alternatively, use a proper nested class :)

share|improve this answer
I actually hadn't seen your solution before I added it. – Jon Skeet Dec 12 '08 at 11:07
9  
Arne, i believe him he didnt copy it. he knows enough of java to be fair enough to give credit when he would have copied it i think. – Johannes Schaub - litb Dec 12 '08 at 16:42
Thank you. It really helped. – sarav Dec 14 '08 at 16:00
@Arne Great minds think alike! Take it as a compliment... – user63904 Aug 23 '11 at 13:35
4  
OMG, did someone blamed THE Jon Skeet for copying? – user Aug 15 '12 at 17:43

That is not possible, but you can add an anonymous initializer like this:

final int anInt = ...;
Object a = new Class1()
{
  {
    System.out.println(anInt);
  }

  void someNewMethod() {
  }
};

Don't forget final on declarations of local variables or parameters used by the anonymous class, as i did it for anInt.

share|improve this answer

Here's another way around the problem:

public class Test{

    public static final void main(String...args){

        Thread t = new Thread(){

            private String message = null;

            Thread initialise(String message){

                this.message = message;
                return this;
            }

            public void run(){
                System.out.println(message);
            }
        }.initialise(args[0]).start();
    }
}
share|improve this answer
4  
Nice solution, but the use of Thread here makes it somewhat misleading at first (for a moment I thought you were created a separate thread to initialize stuff!) – scorpiodawg May 10 '12 at 17:47
Note that after t is defined you can't call t.initialise() unless this function is defined in the class/interface type. – Aram Kocharyan Mar 6 at 12:29
So elegent!!!!! – Some Noob Student Mar 21 at 1:08

In my case, a local class (with custom constructor) worked as an anonymous class:

Object a = getClass1(x);

public Class1 getClass1(int x) {
  class Class2 implements Class1 {
    void someNewMethod(){
    }
    public Class2(int a){
      super();
      System.out.println(a);
    }
  }
  Class1 c = new Class2(x);
  return c;
}
share|improve this answer

It doesn't make any sense to have a named overloaded constructor in an anonymous class, as there would be no way to call it, anyway.

Depending on what you are actually trying to do, just accessing a final local variable declared outside the class, or using an instance initializer as shown by Arne, might be the best solution.

share|improve this answer
The language could easily turn the "normal" constructor arguments into arguments for the anonymous class, if desired. The syntax for the constructor declaration would probably look pretty weird though... – Jon Skeet Dec 12 '08 at 17:19
couldn't it just say to declare the constructor like if it were the base class constructor? i don't see problems with that – Johannes Schaub - litb Dec 28 '08 at 6:48

Yes , It is right that you can not define construct in an Anonymous class but it doesn't mean that anonymous class don't have constructor. Confuse... Actually you can not define construct in an Anonymous class but compiler generates an constructor for it with the same signature as its parent constructor called. If the parent has more than one constructor, the anonymous will have one and only one constructor

share|improve this answer

If you dont need to pass arguments, then initializer code is enough, but if you need to pass arguments from a contrcutor there is a way to solve most of the cases:

Boolean var= new anonymousClass(){
    private String myVar; //String for example

    @Overriden public Boolean method(int i){
          //use myVar and i
    }
    public String setVar(String var){myVar=var; return this;} //Returns self instane
}.setVar("Hello").method(3);
share|improve this answer

You can have a constructor in the abstract class that accepts the init parameters. The Java spec only specifies that the anonymous class, which is the offspring of the (optionally) abstract class or implementation of an interface, can not have a constructor by her own right.

The following is absolutely legal and possible:

static abstract class Q{
    int z;
    Q(int z){ this.z=z;}
    void h(){
        Q me = new Q(1) {
        };
    }
}

If you have the possibility to write the abstract class yourself, put such a constructor there and use fluent API where there is no better solution. You can this way override the constructor of your original class creating an named sibling class with a constructor with parameters and use that to instantiate your anonymous class.

share|improve this answer

You have to distinguish between a class initialization and an instance initialization. The answers of Jon and Arne miss this difference. A constructor of a Java class is an instance initialization and not a class initialization.

The instance of an anonymous class gets initialized with an instance initialization block, which is distinguished from the class initialization block by the use of two braces.

This is a class initialization:

    Object c = new Object() {
            int c;
            { c = 0; }
        };

And this is an instance initialization:

    Object i = new Object() {
            int i;
            {{ i = 0; }}
        };

And because of that you have to use the syntax with two braces, if you want to write an constructor for an anonymous class.

In most cases this subtle difference has no relevance, because both initializations are done only once for an anonymous class and therefor the result is almost the same. But sometimes it makes a difference and here is an example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.