查看: 771|回复: 4
|
Java init() method 問題
[复制链接]
|
|
我知道 call paint() method 是用 repaint()
那麼如何 recall init() method呢??
到底能不能recall init() method?? |
|
|
|
|
|
|
|
发表于 17-2-2006 08:05 PM
|
显示全部楼层
不可以,这method用于初始化object的.. |
|
|
|
|
|
|
|
楼主 |
发表于 17-2-2006 08:10 PM
|
显示全部楼层
所以說我不能再Call它一次嗎?
[ 本帖最后由 銀月游俠 于 17-2-2006 08:12 PM 编辑 ] |
|
|
|
|
|
|
|
楼主 |
发表于 18-2-2006 08:28 PM
|
显示全部楼层
那麼請問有沒有什麼方法可以改變 init ()裡面的 image??
例如 : Label.setText("hello java") 可以把原本 Label裡面的text改成 hello java....
我想問的是 , 現在我把一個圖形,例如cone(我自己寫了一個可以display出一個cione的code), 用 add("Center",cone);
把他顯示出來
那麼有沒有什麼方法可以改變那個圖案?(在別的method裡面) |
|
|
|
|
|
|
|
发表于 4-3-2006 10:54 PM
|
显示全部楼层
You can try to overide the object.
Example ,
Oringinal Class
Class A {
public void init() {
... ...
}
}
Solution
Class B extends Class A {
public void init() {
super.init();
... ...
}
}
try to do the rest of stuff of you want lo ... hehe |
|
|
|
|
|
|
| |
本周最热论坛帖子
|