Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to tell a method has a varargs argument using reflection?

Here is a sample code

package org.example;

import java.lang.reflect.Method;

class TestRef {

        public void testA(String ... a) {
                for (String i : a) {
                        System.out.println(i);
                }
        }

        public static void main(String[] args){

                Class testRefClass = TestRef.class;

                for (Method m: testRefClass.getMethods()) {
                        if (m.getName() == "testA") {
                                System.out.println(m);
                        }
                }
        }
}

The output is

public void org.example.TestRef.testA(java.lang.String[])

So the signature of the method is reported to take a array of String.

Is there any mean in the reflection library I can tell that the method is originally declared to take a varargs?

like image 753
Anthony Kong Avatar asked Jun 15 '10 01:06

Anthony Kong


2 Answers

Is there any mean in the reflection library I can tell that the method is originally declared to take a varargs?

Yup. java.lang.reflect.Method.isVarArgs().

However, this is only of use if you are trying to assemble and display method signatures in human readable form. If you need to invoke a varargs method using reflection, you will have to assemble the varargs arguments into an array-typed argument.

like image 186
Stephen C Avatar answered Oct 23 '22 02:10

Stephen C


there is really no difference

static public void main(String[]  args)
static public void main(String... args)

actually the ... notation was introduced very late in the process of adding vararg in java. James Gosling proposed it, he thinks it's cuter. Before that, the same [] denotes the vararg.

like image 35
irreputable Avatar answered Oct 23 '22 02:10

irreputable