【Java实例】王者荣耀阵容展示

题目:

创建一个Hero类代表一个英雄,其中包含名字和战斗力两个成员变量。使用一个集合存储五位英雄,然后遍历集合展示所有英雄信息。

代码

Hero类

public class Hero {
	private String name;//姓名
	private int attack;//攻击力

	public Hero() {
		super();
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getAttack() {
		return attack;
	}

	public void setAttack(int attack) {
		this.attack = attack;
	}

	public Hero(String name, int attack) {
		super();
		this.name = name;
		this.attack = attack;
	}

}

HeroTest类

import java.util.ArrayList;

public class HeroTest {

	public static void main(String[] args) {
		// 创建一个集合,代表一个队伍,有五个英雄
		ArrayList team = new ArrayList<>();
		
		//创建五个英雄对象
		Hero one = new Hero("刘禅",123);
		Hero two = new Hero("后羿",166);
		Hero three = new Hero("韩信",222);
		Hero four = new Hero("貂蝉",111);
		Hero five = new Hero("李信",188);
		
		//将五个英雄添加到集合中
		team.add(one);
		team.add(two);
		team.add(three);
		team.add(four);
		team.add(five);
		
		//遍历集合,进行阵容展示
		for(int i=0; i

结果

【Java实例】王者荣耀阵容展示_第1张图片

你可能感兴趣的:(Java,java)