Non-static method 'sunOfNums(int[], int)' cannot be referenced from a static context
时间: 2024-08-13 22:03:33 浏览: 34
Java8 Stream flatmap中间操作用法解析
5星 · 资源好评率100%
这是一个关于Java编程的问题。"Non-static method 'sunOfNums(int[], int)' cannot be referenced from a static context" 的意思是,静态方法(static)不能引用非静态的方法(non-static),即在这个特定的情境下,试图在一个静态上下文中调用名为 "sunOfNums" 的非静态成员函数,这是不允许的。
在Java中,静态方法属于类级别,而非静态方法通常关联于类的实例。如果你想在类的外部,比如主函数(main)或其他静态函数中调用一个非静态方法,你需要创建该类的对象并通过这个对象来调用它。
阅读全文