/*1、 如果方法的返回类型为 void ,则方法中不能使用 return 返回值!
*2、 方法的返回值最多只能有一个,不能返回多个值
*3、 方法返回值的类型必须兼容,例如,如果返回值类型为 int ,则不能返回 String 型值
-
*/
public class test12 {
public static void main(String[] args) {
//首先创建一个名为scores的对象
test12 scores = new test12();
//调用方法并且接收返回值,保存在变量score中
int score = scores.classSum();
System.out.println(“和为:”+score);
}//定义无参带返回值的方法
public int classSum() {
int a = 2;
int b = 55;
int sum = a + b;
return sum;}
}