//Member_08.java //おススメできないコードです class Member_08{ private int no; private String name; private int max_hp; private int now_hp; private boolean life = true; public int getNo(){ return no; } public void setNo(int no){ this.no = no; } public String getName(){ return name; } public void setName(String name){ this.name = name; } public int getMax_hp(){ return max_hp; } public void setMax_hp(int max_hp){ max_hp = max_hp<1 ? 1 : max_hp; now_hp = now_hp>max_hp ? max_hp : now_hp; this.max_hp = max_hp; } public int getNow_hp(){ return now_hp; } public void setNow_hp(int now_hp){ now_hp = now_hp>max_hp ? max_hp : now_hp; if(now_hp<0){ now_hp = 0; life = false; } this.now_hp = now_hp; } public boolean isLife(){ return life; } public Member_08(int no, String name, int max_hp, int now_hp){ this.no = no; this.name = name; this.max_hp = max_hp; this.now_hp = now_hp; max_hp = max_hp<1 ? 1 : max_hp; now_hp = now_hp>max_hp ? max_hp : now_hp; now_hp = now_hp<0 ? 0 : now_hp; } }