我有我的方法
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();
}
答案 0 :(得分:1)
否,在Java中是不可能的。 相反,您可以做的是创建另一个不需要任何参数的同名方法。在这里,您可以使用参数加上您的东西来调用其他方法