5.29
Posted xxy02160216
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.29相关的知识,希望对你有一定的参考价值。
package chap; import java.util.ArrayList; public class test { public static void main(String[] args) { // TODO Auto-generated method stub ArrayList<String> list = new ArrayList<String>(); list.add("欧欧 Q仔"); list.add("亚亚 Q妹"); list.add("菲菲 Q妹"); list.add("美美 Q妹"); System.out.println("共计有" + list.size() + "只企鹅"); System.out.println("分别是:"); for (int a = 0; a < list.size(); a++) { System.out.println(list.get(a)); } list.remove(2); list.remove("美美 Q妹"); System.out.println("分别是:"); for (int a = 0; a < list.size(); a++) { System.out.println(list.get(a)); } if (list.contains("美美 Q妹")) { System.out.println("集合中包含美美的信息"); } else { System.out.println("集合中不包含美美的信息"); } }
以上是关于5.29的主要内容,如果未能解决你的问题,请参考以下文章