I was playing with Java Reflection API and observed that methods with varargs become transient. Why is that and what does transient keyword mean in this context?

From Java Glossary, transient:

A keyword in the Java programming language that indicates that a field is not part of the serialized form of an object. When an object is serialized, the values of its transient fields are not included in the serial representation, while the values of its non-transient fields are included.

However this definition does not say anything about methods. Any ideas?

import java.lang.reflect.Method;
import java.lang.reflect.Modifier;

public class Dummy {
    public static void main(String[] args) {
        for(Method m : Dummy.class.getDeclaredMethods()){
            System.out.println(m.getName() + " --> "+Modifier.toString(m.getModifiers()));
        }
    }

    public static void foo(int... args){}
}

Outputs:

main --> public static
foo --> public static transient
link|improve this question

2  
Oh, interesting! I had thought methods didn't become serialized so now I'm curious. – Kris Feb 8 '11 at 18:31
Amazing find. :) – biziclop Feb 8 '11 at 18:45
1  
@biziclop what's so amazing, try Modifier.toString(-1), much better – bestsss Feb 8 '11 at 18:50
feedback

3 Answers

up vote 11 down vote accepted

Sort of an answer can be found in the code of javassist AccessFlag

public static final int TRANSIENT = 0x0080;
public static final int VARARGS   = 0x0080;

It appears both have the same values. And since transient means nothing for methods, while varargs means nothing for fields, it is ok for them to be the same.

But it is not OK for the Modifier class not to take this into account. I'd file an issue about it. It needs a new constant - VARARGS and a new method - isVarargs(..). And the toString() method can be rewritten to include "transient/varargs".

link|improve this answer
1  
the Modifier.toString() takes a single int and.. takes it from there; since there is no difference field/method, it can never be correct – bestsss Feb 8 '11 at 18:48
@bestsss - that's true. But another method can be added that takes AccessibleObject as argument as well. Or just to add both the the message (see my update) – Bozho Feb 8 '11 at 18:49
AccessibleObject won't work for Class, needs to be just Object – bestsss Feb 8 '11 at 18:53
@bestsss ok, agreed – Bozho Feb 8 '11 at 18:54
feedback

This looks like a bug in the implementation. I think that the root cause might be that the bit set in the .class file for transient fields is the same for varargs methods (see http://java.sun.com/docs/books/jvms/second_edition/ClassFileFormat-Java5.pdf, pages 122 and 119).

link|improve this answer
why bug? you can pass any arbitrary number, and you will get some result – bestsss Feb 8 '11 at 18:49
@bestsss- That's a good point. I was under the impression that the Modifier class had more information about where the flags were coming from. – templatetypedef Feb 8 '11 at 19:42
+1 for for quoting the source – Bozho Feb 8 '11 at 19:58
feedback

The flag for a transient field has been overloaded in the context of a method to mean that the method is a vararg method.

Likewise, the flag for a volatile field has been overloaded in the context of a method to mean that the method is a bridge method.

See: http://java.sun.com/docs/books/vmspec/2nd-edition/ClassFileFormat-Java5.pdf

pages 118-122 (or 26-30 in the PDF file)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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