为什么 getHeight() 方法在构造函数中不起作用?
代码如下:
import acm.program.*;
public class test extends GraphicsProgram{
public test(){
println(getHeight());
}
public void run(){
println(getHeight());
}
}
执行结果为0 472
。为什么构造函数中的getHeight()
返回0
,而run()
返回472
,这是真正的价值?
This is the code:
import acm.program.*;
public class test extends GraphicsProgram{
public test(){
println(getHeight());
}
public void run(){
println(getHeight());
}
}
The executed result is 0 472
. Why does getHeight()
in the constructor return 0
, whereas run()
returns 472
, which is the real value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
高度直到
init()
方法才被设置,该方法在run()
方法之前执行。The height has not been set until the
init()
method, which executes before therun()
method.一个物品一开始是没有高度的。最有可能的是,您在布局组件或给定高度之前调用 getHeight() 。
An item doesn't have a height at first. Most likely you are calling getHeight() before the component is laid out or given a height.