主题:大家能不能帮我看一下我错在哪里
class People{
int n;
void height(){
System.out.println("My height is" +n);
}
double getheight(){
this.n = n;
return n;
}
}
public class Try1{
public static void main(String args[]){
People stu = new People();
stu.getheight( 1.78 );
stu.height();
}
}
这个是我自己尝试写的一段代码 ,错误在于stu.getheight( 1.78 )中的值不能够传递, 但是我不知道应该怎样修改,也不知道为什么错咯,请问有没有哪位知道答案,能够为我指点迷津,谢谢
int n;
void height(){
System.out.println("My height is" +n);
}
double getheight(){
this.n = n;
return n;
}
}
public class Try1{
public static void main(String args[]){
People stu = new People();
stu.getheight( 1.78 );
stu.height();
}
}
这个是我自己尝试写的一段代码 ,错误在于stu.getheight( 1.78 )中的值不能够传递, 但是我不知道应该怎样修改,也不知道为什么错咯,请问有没有哪位知道答案,能够为我指点迷津,谢谢