int i=0; //声明整形变量
public int change()//返回值为整形类型的方法
{
return 2;//返回值
}
i=change();//把方法的返回值赋给变量
只要你的变量的类型和方法的返回值类型相同就行啊,
public String getName() {
return "刘备";
}
String name = getName();
int i;
return i;
public int method(){
return 5;
}
int a = method();