码迷,mamicode.com
首页 > 编程语言 > 详细

用java来删除数组中指定的元素

时间:2016-01-19 12:23:37      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

 

  public static void main(String[] args){
        String[] a = new String[]{"1","5","3","7"};
        String[] b = new String[]{"2","3","4"};
        String[] arrResult = arrContrast(a, b);       
        for (String strResult : arrResult) {
            System.out.println("最后的结果:----------->" + strResult);    
        }
    }

 

注:输出结果      最后的结果:----------->1
        最后的结果:----------->5
        最后的结果:----------->7


    
    //处理数组字符
    private static String[] arrContrast(String[] arr1, String[] arr2){
        List<String> list = new LinkedList<String>();
        for (String str : arr1) {                //处理第一个数组,list里面的值为1,2,3,4
            if (!list.contains(str)) {
                list.add(str);
            }
        }
        for (String str : arr2) {      //如果第二个数组存在和第一个数组相同的值,就删除
            if(list.contains(str)){
                list.remove(str);
            }
        }
        String[] result = {};   //创建空数组
        return list.toArray(result);    //List to Array
    }

 

新特性 ::::

        public static void main(String[] args) {
              String[] aa = { "1", "2", "3" };
              for (String arr : aa) {
                   System.out.println(arr);   // java1新特性嘛。遍历数组、list嘛!
              }
              for (int i = 0; i < aa.length; i++) {
                   System.out.println(aa[i]);
              }
         }

 

输出结果:     1
        2
            3
        1
        2
        3

 

用java来删除数组中指定的元素

标签:

原文地址:http://www.cnblogs.com/Crysta1/p/5141340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!