一:主类中自定义函数
在主类中,如果想要在main函数中调用自定义的其他方法,则这个函数需要使用static关键字定义,否则会报错Cannot make a static reference to the non-static method xx from the type xx,调用的时候直接用函数名就可以了,如下:
public class create_function {
public static void main(String []args){
int s = jia(5,4);
System.out.println(s);
}
static int jia(int a, int b){
System.out.println("我是自定义相加函数,我被调用了!!");
return a+b;
}
}