當前位置:係統粉 > 電腦問答 > 其他問答 > 高手們進來看看

高手們進來看看

提問者:紅塵陌上_祈  |  瀏覽 次  |  提問時間:2017-02-08  |  回答數量:5

高手們進來看看 import java.awt.*; import java.applet.*; public class AppletMethod extends Applet{ static int initCount=0; static int startCount=0; static int paintCount=0; static int stopCount=0; static int destoryCount=0; public void init(){ initCount++; } public void start(){ initCount++; } public void paint(){ initCount++; } public void stop(){ initCount++; } public void destory(){ initCount++; } public void paint(Graphics g){ paintCount++; g.drawString(\"第\"+initCount+\"次初始化工作\",30,30);

已有5條答案
唐門鼓手

唐門鼓手

回答數:201  |  被采納數:62

2017-02-08 11:54:44
g.drawString("第"+initCount+"次初始化工作",30,30);
g.drawString("第"+startCount+"次起動",30,50);
g.drawString("第"+paintCount+"次繪畫",30,70);
g.drawString("第"+stopCount+"次停止",30,90);
g.drawString("第"+destoryCount+"次關閉",30,110);
}
}
我把最後點改了後,又出現了如圖的錯誤,不過上次是16個現在隻有5個了

(1)

讚 20
司春來在路上

司春來在路上

回答數:158  |  被采納數:115

2017-02-08 14:15:50
g.drawString("第"+initCount+"次初始化工作",30,30);
g.drawString("第"+startCount+"次起動",30,50);
g.drawString("第"+paintCount+"次繪畫",30,70);
g.drawString("第"+stopCount+"次停止",30,90);
g.drawString("第"+destoryCount+"次關閉",30,110);
}
}
再把上麵的冒號在英文狀態下改一下就OK了
不好意思哈,我自己解決了
讚 15
妖奇暮雨

妖奇暮雨

回答數:154  |  被采納數:18

2017-02-08 15:18:06
import java.applet.Applet;
import java.awt.Graphics;

public class T1031 extends Applet {
static int initCount = 0;
static int startCount = 0;
static int paintCount = 0;
static int stopCount = 0;
static int destoryCount = 0;

public void init() {
initCount++;
}

public void start() {
initCount++;
}

public void paint() {
initCount++;
}

public void stop() {
initCount++;
}

public void destory() {
initCount++;
}

public void paint(Graphics g) {
paintCount++;
g.drawString("第" + initCount + "次初始化工作", 30, 30);
g.drawString("第" + startCount + "次起動", 30, 50);
g.drawString("第" + paintCount + "次繪畫", 30, 70);
g.drawString("第" + stopCount + "次停止", 30, 90);
g.drawString("第" + destoryCount + "次關閉", 30, 110);
}
}



(2)
讚 15
冥玖_眠

冥玖_眠

回答數:67  |  被采納數:91

2017-02-08 20:30:18
k嗬嗬,你是個編程高手哦
讚 6
無語無奈7788

無語無奈7788

回答數:15  |  被采納數:3

2017-02-08 18:16:20
編程中用的標點都事在英文輸入法狀態下輸進去的,嗬嗬
讚 1
解決方法
版權信息

Copyright @ 2011 係統粉 版權聲明 最新發布內容 網站導航