为什么 getHeight() 方法在构造函数中不起作用?

发布于 2024-11-16 07:50:11 字数 397 浏览 1 评论 0原文

代码如下:

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

GRAY°灰色天空 2024-11-23 07:50:11

高度直到 init() 方法才被设置,该方法在 run() 方法之前执行。

The height has not been set until the init() method, which executes before the run() method.

最近可好 2024-11-23 07:50:11

一个物品一开始是没有高度的。最有可能的是,您在布局组件或给定高度之前调用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文