1 Star 0 Fork 30

炎渊/ants-start

forked from 吕焱飞/ants-start 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Counter.java 1011 Bytes
一键复制 编辑 原始数据 按行查看 历史
luyanfei78 提交于 2020-04-29 09:21 . initial project.
import greenfoot.*;
/**
* Counter that displays some taxt and a number.
*
* @author Michael Kölling
* @version 1.1
*/
public class Counter extends Actor
{
private int value = 0;
private String text;
/**
* Create a counter without a text prefix, initialized to zero.
*/
public Counter()
{
this("");
}
/**
* Create a counter with a given text prefix, initialized to zero.
*/
public Counter(String prefix)
{
text = prefix;
int imageWidth= (text.length() + 2) * 10;
setImage(new GreenfootImage(imageWidth, 16));
updateImage();
}
/**
* Increment the counter value by one.
*/
public void increment()
{
value++;
updateImage();
}
/**
* Show the current text and count on this actor's image.
*/
private void updateImage()
{
GreenfootImage image = getImage();
image.clear();
image.drawString(text + value, 1, 12);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/yan_yuan/ants-start.git
git@gitee.com:yan_yuan/ants-start.git
yan_yuan
ants-start
ants-start
master

搜索帮助