本意是输出LinkedList中含有John的各项
我的Search()方法应该怎么实现?
我等着你来救我.....
import java.util.LinkedList;
public class linkedListDemo
{
LinkedList L = new LinkedList();
/*构造方法*/
linkedListDemo()
{
L.add("John Alex");
L.add("Miller Scott");
L.add("John Anna");
L.add("Johnson Jack");
L.add("Hunter Jeff");
L.add("Williams Serena");
L.add("Williams Venus");
}
void search()//检索John
{
int j = L.indexOf("John");
System.out.println(j);
}
void display()//显示
{
for(int i=0;i<L.size();i++)
System.out.println(L.get(i));
}
public static void main(String[] args)
{
linkedListDemo lLD = new linkedListDemo();
System.out.println("****************************************");
System.out.println("检索 LinkedList 中的对象");
System.out.println("****************************************");
lLD.display();
System.out.println("****************************************");
System.out.println("检索 LinkedList 中的含有John对象");
System.out.println("****************************************");
lLD.search();
}
}