**class FangFaDemo{
public static void main(String[] args){
int x = 1 , y = 2;
System.out.println(sum(x,y));
}
}
public static int sum(int a,int b){
return a+b;
}**
显示的是sum方法需要class,重新检查了一下,发现是class的大括号没有把sum方法包括起来
**class FangFaDemo{
public static void main(String[] args){
int x = 1 , y = 2;
System.out.println(sum(x,y));
}
}
public static int sum(int a,int b){
return a+b;
}**
显示的是sum方法需要class,重新检查了一下,发现是class的大括号没有把sum方法包括起来