系统粉 > 电脑问答 > 其他问答

已解决高手们进来看看

提问者:红尘陌上_祈  |  浏览次  |  提问时间: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

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)

2017-02-08 11:54:44
赞 20
司春来在路上

司春来在路上

回答数:158  |  被采纳数:115

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了
不好意思哈,我自己解决了
2017-02-08 14:15:50
赞 15
妖奇暮雨

妖奇暮雨

回答数:154  |  被采纳数:18

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)
2017-02-08 15:18:06
赞 15
冥玖_眠

冥玖_眠

回答数:67  |  被采纳数:91

k呵呵,你是个编程高手哦
2017-02-08 20:30:18
赞 6
无语无奈7788

无语无奈7788

回答数:15  |  被采纳数:3

编程中用的标点都事在英文输入法状态下输进去的,呵呵
2017-02-08 18:16:20
赞 1
相关问答
最新其他问答
解决方法