package test;
import java.util.List;
import java.util.ArrayList;
import entity.NewTitle;
public class NewTitleDamo {
public static void main(String[] args) {
//1创建多个各类新闻标题对象
NewTitle car=new NewTitle(1,"汽车","管理员");
NewTitle test=new NewTitle(2,"高考","管理员");
//2创建存储各类新闻标题的集合对象
List newsTitleList=new ArrayList();
//3按照顺序依次添加各类新闻标题
newsTitleList.add(car);
newsTitleList.add(test);
//4获取新闻标题的总数
System.out.println(":新闻标题的总数为"+newsTitleList.size()+"条");
//5根据位置获取相应新闻标题、逐条打印每条新闻标题的名称,也就是我们常说的遍历集合对象
for (int i = 0; i < newsTitleList.size(); i++) {
//从集合对象中取出每一个新闻标题对象 取值的方法get,参数为集合的索引,Objet类型
//每一次循环拿到的都是集合中的一个元素,元素加强制转换得到我们需要的类型
NewTitle title=(NewTitle) newsTitleList.get(i);
System.out.println((i+1)+":"+title.getTitleName());
}
}
}
分享到:
相关推荐
Example2_2.java
example2c.c
example2 example2 example2 example2 example2
Example2.java
example 2.ipynb
example2.m
java
学生成绩管理系统,介绍从信息输入到统计成绩,输出成绩以及管理
vdbench-example2.zip
example2_1.sas
ch5example2.mdl
example2_8.jsp
example2_9.jsp
Example2.Diagnostics.psd1
example2_5_2(1).html
example2_6.C
Example2.Diagnostics.Tests.ps1
Slotine Applied Nonlinear Control, sliding mode control EXAMPLE 2