基礎題數組
練習一:集合框架框架
1、請簡述集合框架。dom
答:集合框架主要包括兩種:一種是集合,存儲對象信息,另外一種是Map.存儲的是鍵值。spa
練習二:Collection集合統計元素出現次數指針
2、給定如下代碼,請定義方法public static int listTest(Collection<String> list,String s)統計集合中指定元素出現的次數,如"a":2,"b": 2,"c" :1, "xxx":0。對象
Collection<String> list = new ArrayList<>();索引
list.add("a");ci
list.add("a");get
list.add("b");hash
list.add("b");
list.add("c");
System.out.println("a:"+listTest(list, "a"));
System.out.println("b:"+listTest(list, "b"));
System.out.println("c:"+listTest(list, "c"));
System.out.println("xxx:"+listTest(list, "xxx"));
Collection<String> list = new ArrayList<>();
list.add("a");
list.add("a");
list.add("b");
list.add("b");
list.add("c");
int a=listTest(list,"a");
int b=listTest(list,"b");
int c=listTest(list,"c");
int ss=listTest(list,"xxx");
System.out.println("a出現的次數:"+a);
System.out.println("b出現的次數:"+b);
System.out.println("c出現的次數:"+c);
System.out.println("xxx出現的次數:"+ss);
}
public static int listTest(Collection<String>list2,String s){
int count=0;
Iterator ss=list2.iterator();
while (ss.hasNext()){
if(s.equals(ss.next())){
count++;
}
}
return count;
}
}
練習三:Collection集合數組轉集合
3、定義一個方法,要求此方法把int數組轉成存有相同元素的集合(集合裏面的元素是Integer),並返回。
public class Exercise02 {
public static void main(String[] args) {
int[]aa={1,34,45,56,77,78,90};
Meth(aa);
}
public static void Meth(int[]aa){
Collection<Integer>list=new ArrayList<>();
for(int srg:aa){
list.add(srg);
}
Iterator ss=list.iterator();
while (ss.hasNext()){
System.out.println(ss.next());
}
}
}
練習四:Collection集合集合轉數組
4、定義一個集合,並把集合(集合裏面的元素是Integer)轉成存有相同元素的數組,並將結果輸出在控制檯。(可使用Object[]數組類型接收轉換的數組)
//Collection集合集合轉數組
public class Exercise03 {
public static void main(String[] args) {
Collection ss=new ArrayList();
ss.add("劉備");
ss.add("關羽");
ss.add("張飛");
ss.add("趙雲");
ss.add("黃忠");
ss.add("馬超");
ss.add("臥龍");
ss.add("鳳雛");
//集合轉數組
Object[]obj=ss.toArray();
for(Object srg:obj){
System.out.println(srg);
}
}
}
練習五:Collection集合contains()方法使用
5、定義一個方法listTest(ArrayList<String> al, String s),要求使用contains()方法判斷al集合裏面是否包含s。
public class Exercise04 {
public static void main(String[] args) {
ArrayList<String>ss=new ArrayList<>();
ss.add("劉備");
ss.add("關羽");
ss.add("張飛");
ss.add("趙雲");
ss.add("黃忠");
ss.add("馬超");
ss.add("臥龍");
ss.add("鳳雛");
boolean flag=listTest(ss,"張飛");
System.out.println(flag);
}
public static boolean listTest(ArrayList<String> al, String s){
//boolean contains(Object o)若是此列表包含指定的元素,則返回 true 。
for(String srf:al){
if(srf.contains(s)){
return true;
}
}
return false;
}
}
練習六:Collection集合isEmpty()方法的使用
6、定義一個方法listTest(ArrayList<String> al), 要求使用isEmpty()判斷al裏面是否有元素。
ArrayList<String>ss=new ArrayList<>();
ss.add("劉備");
ss.add("關羽");
ss.add("張飛");
ss.add("趙雲");
ss.add("黃忠");
ss.add("馬超");
ss.add("臥龍");
boolean flag=listTest(ss);
System.out.println(flag);
}
public static boolean listTest(ArrayList<String> al){
for(String ss:al){
//若是爲空就返回true
if(ss.isEmpty()){
return true;
}
}
return false;
}
}
練習七:簡述迭代器的實現原理
7、請簡述迭代器的實現原理
當遍歷集合時,首先經過調用集合的 iterator()方法獲取迭代器對象,而後使用 hashNext()方 法判斷集合中是否存在下一個元素。若是存在,則調用 next()方法將元素取出,不然說明已經到達了集合末尾,中止遍歷元素。Iterator 迭代器對象在遍歷集合時,內部採用指針的方式來跟蹤集合中的元素,爲了更好的理解迭代器的工做原理.
練習八:Collection集合返回首次出現索引
8、定義一個方法listTest(ArrayList<Integer> al, Integer s),要求返回s在al裏面第一次出現的索引,若是s沒出現過返回-1。
public static void main(String[] args) {
ArrayList<Integer>list=new ArrayList<>();
list.add(100);
list.add(200);
list.add(300);
list.add(400);
list.add(500);
listTest(list,300);
}
public static void listTest(ArrayList<Integer>al, Integer s){
System.out.println(al.indexOf(s));
}
擴展題
練習九:Collection集合練習
9、(複雜,並不難)定義一個學生類Student,包含三個屬性姓名、年齡、性別,建立三個學生對象存入ArrayList集合中。
A:遍歷集合遍歷輸出。
B:求出年齡最大的學生,而後將該對象的姓名變爲:小豬佩奇。
//存入ArrayList集合
ArrayList<Student> list=new ArrayList<>();
//建立對象
Student student1=new Student();
student1.setName("李文傑");
student1.setAge(23);
student1.setSex("男");
Student student2=new Student();
student2.setName("桑鳳嬌");
student2.setAge(20);
student2.setSex("女");
Student student3=new Student();
student3.setName("郭朝旭");
student3.setAge(27);
student3.setSex("男");
//添加到集合中
list.add(student1);
list.add(student2);
list.add(student3);
int index=0;
//默認下標爲零的最大
int num=list.get(0).getAge();
for(int i=0;i<list.size();i++){
if(num<list.get(i).getAge()){
num=list.get(i).getAge();
index=i;
}
}
System.out.println(num);
list.get(index).setName("張三");
System.out.println(list.get(index).getName());
}
練習十:Collection集合練習
10、產生10個1-100的隨機數,並放到一個數組中,把數組中大於等於10的數字放到一個list集合中,並打印到控制檯。
public class Exercise08 {
public static void main(String[] args) {
Meth();
}
public static void Meth(){
ArrayList<Integer>list=new ArrayList<>();
int[]num=new int[10];
Random ss=new Random();
for(int i=0;i<10;i++){
//把隨機生成的10 個數放數組中
num[i]=ss.nextInt(100);
if(num[i]>=10){
list.add(num[i]);
}
}
for(Integer ff:list){
System.out.println(ff);
}
}
}