Hero类
作者:
勇者与王者 | 来源:发表于
2019-10-10 19:00 被阅读0次package multiThread;
/**
*
* @author qz:
* @version 创建时间:2019年10月9日 下午3:46:58
*
*/
public class Hero {
public String name;
public float hp;
public int damage;
public void attackHero(Hero h) {
// try {
// Thread.sleep(1000);
// }catch (InterruptedException ex) {
// ex.printStackTrace();
// }
h.hp-= damage;
System.out.format("%s 正在攻击 %s, %s的血变成了 %.0f%n", name,h.name,h.name,h.hp);
if (h.isDead()) {
System.out.println(h.name+"死了");
}
}
public boolean isDead() {
// TODO Auto-generated method stub
return 0>=hp?true:false;
}
}
本文标题:Hero类
本文链接:https://www.haomeiwen.com/subject/ixwapctx.html
网友评论