检查带有参数的方法是否有参数?

时间:2019-01-23 18:07:21

标签: java parameters arguments

我有我的方法

public static boolean method(int[] v, int n) throws IllegalArgumentException
{
   //throw Exception if the method has < 1 Argument
}

我想在调用方法时检查是否有任何参数。可以这样做吗?

public static void main(String[] args)
{
   try
   {
   method(); //call method without any arguments
   }catch(Exception e)
   {
     e.printStackTrace();
}

1 个答案:

答案 0 :(得分:1)

否,在Java中是不可能的。 相反,您可以做的是创建另一个不需要任何参数的同名方法。在这里,您可以使用参数加上您的东西来调用其他方法