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

In final variable passed to anonymous class via constructor, Jon Skeet mentioned that variables are passed to the anonymous class instance via an auto-generated constructor. Why would I not be able to see the constructor using reflection in that case:

public static void main(String... args) throws InterruptedException {
final int x = 100;
new Thread() {
    public void run() {
        System.out.println(x);      
        for (Constructor<?> cons : this.getClass()
                .getDeclaredConstructors()) {
            StringBuilder str = new StringBuilder();
            str.append("constructor : ").append(cons.getName())
                    .append("(");
            for (Class<?> param : cons.getParameterTypes()) {
                str.append(param.getSimpleName()).append(", ");
            }
            if (str.charAt(str.length() - 1) == ' ') {
                str.replace(str.length() - 2, str.length(), ")");
            } else
                str.append(')');
            System.out.println(str);
        }
    }

}.start();
Thread.sleep(2000);

}

The output is:

100
constructor : A$1()
share|improve this question

3 Answers

up vote 6 down vote accepted

Here is what your program prints out on my system:

100
constructor : A$1()

So the constructor is there. However, it is parameterless. From looking at the disassembly, what happens is that the compiler figures out that it doesn't need to pass x to run() since its value is known at compile time.

If I change the code like so:

public class A {

    public static void test(final int x) throws InterruptedException {
        new Thread() {
            public void run() {
                System.out.println(x);
                for (Constructor<?> cons : this.getClass()
                        .getDeclaredConstructors()) {
                    StringBuilder str = new StringBuilder();
                    str.append("constructor : ").append(cons.getName())
                            .append("(");
                    for (Class<?> param : cons.getParameterTypes()) {
                        str.append(param.getSimpleName()).append(", ");
                    }
                    if (str.charAt(str.length() - 1) == ' ') {
                        str.replace(str.length() - 2, str.length(), ")");
                    } else
                        str.append(')');
                    System.out.println(str);
                }
            }

        }.start();
        Thread.sleep(2000);
        }

    public static void main(String[] args) throws InterruptedException {
        test(100);
    }

}

The constructor that gets generated is now:

constructor : A$1(int)

The sole argument is the value of x.

share|improve this answer

In this case, it's because 100 is a constant. That gets baked into your class.

If you change x to be:

final int x = args.length;

... then you'll see Test$1(int) in the output. (This is despite it not being explicitly declared. And yes, capturing more variables adds parameters to the constructor.)

share|improve this answer
+1 Good answer. I checked it and Jon is quite correct! Didn't know that - learned something :) – Bohemian Sep 19 '11 at 14:11
1  
@Bohemian: Given that I know the origin of the question, I think it is :) – Jon Skeet Sep 19 '11 at 14:12
2  
Jon - just curious. How long per day do you spend answering questions? – Bohemian Sep 19 '11 at 14:17
@Bohemian: Hard to say - it's "bits and bobs of time" rather than one big chunk :) – Jon Skeet Sep 19 '11 at 14:18

Because you're using getDeclaredConstructors(), which only returns the explicitly declared constructors. Try getConstructors() instead.

share|improve this answer
Nope. Jon is right! His answer does work. – Bohemian Sep 19 '11 at 14:13
getConstructors() returns an array containing Constructor objects reflecting all the public constructors. getDefaultConstructors() returns an array of Constructor objects reflecting all the constructors declared by the class represented by this Class object. These are public, protected, default (package) access, and private constructors. The elements in the array returned are not sorted and are not in any particular order. If the class has a default constructor, it is included in the returned array. – Ustaman Sangat Sep 19 '11 at 14:38
@Daniel, in fact if you print out Modifier.isPublic(cons.getModifiers()), it gives false. – Ustaman Sangat Sep 19 '11 at 14:41

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.