代码之家  ›  专栏  ›  技术社区  ›  A.Torres

在静态方法[duplicate]中调用非静态方法

  •  -4
  • A.Torres  · 技术社区  · 6 年前

    我的代码有点问题。我试图找到运行时来与我为这个问题准备的一些数学进行比较。我特别测试了一种方法,它是这样的:

     public static int foo(int n, int k){
            long startTime = System.nanoTime();
            if(n<=k){
                long endTime = System.nanoTime();
                System.out.println("checkFoo");
                System.out.println("start time: " +startTime);
                System.out.println("end time: " +endTime);
                return 1;
            }
            else{
                return foo(n/k,k) + 1;
            }
        }
    

    public static void main(String[] args){
        foo(1, 1);
        foo(5, 1); 
        foo(10, 1);
        foo(100, 1);
    }
    

    上面写着一个错误

    Exception in thread "main" java.lang.StackOverflowError
    

    然后重复这句话:

    at Problem3.foo(Problem3.java:42) 
    

    我想知道这是否与foo应该返回int有关,也许我只是没有正确调用函数。如果是这样的话,调用这个函数的正确方法是什么?这样它就可以打印出我需要的信息?或者这个错误和我所理解的完全不同?

    5 回复  |  直到 6 年前
        1
  •  3
  •   JB Nizet    6 年前

    只有一个无限递归循环:

    foo(5, 1): n = 5, k = 1
    calls foo(5 / 1, 1), i.e. foo(5, 1)
    calls foo(5 / 1, 1), i.e. foo(5, 1)
    calls foo(5 / 1, 1), i.e. foo(5, 1)
    ...
    
        2
  •  1
  •   Maurice    6 年前

    如果问题是错误的返回类型,则会出现编译错误。当方法使用完所有已分配的内存时,会导致stackoverflow错误。有关如何导致stackoverflow错误的更多信息,请阅读以下内容: What is a StackOverflowError?

        3
  •  1
  •   dominikbrandon    6 年前

    似乎您有一个无限的递归函数调用,这会导致JVM的堆溢出。尝试包含一些输入验证,以防止出现这种情况。

        4
  •  1
  •   akashsharma3030    6 年前

    您的代码正在无限循环中运行,但您可以像下面这样捕获它

    public static int foo(int n, int k){
            long startTime = System.nanoTime();
            if(n<=k){`enter code here`
                long endTime = System.nanoTime();
                System.out.println("checkFoo");
                System.out.println("start time: " +startTime);
                System.out.println("end time: " +endTime);
                return 1;
            }
            else{
                try {
                    return foo(n/k,k) + 1;
                } catch (StackOverflowError e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                    return 1;
                }
            }
        }
    
        5
  •  1
  •   The Scientific Method    6 年前

    当你叫这个的时候 foo(5, 1); 5 1 foo if(5<=1) 失败,因此代码在侧边 else 将执行,即。 return foo(5/1,1) + 1; 一次又一次,重复,重复。。。导致 StackOverflowError

    foo(5,1); 总是呼喊着没有结束 ,所以你得到了