java中如何把ArrayList中相同的两条记录相加。ArrayList中还有一个list,下图相加type

如题所述

package com.ksec.project.b2012xm031.wms.rf;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class A {
private String company;
private String dept;
private String person;
private Integer[] type;
public String getCompany() {
return company;
}
public void setCompany(String company) {
this.company = company;
}
public String getDept() {
return dept;
}
public void setDept(String dept) {
this.dept = dept;
}
public String getPerson() {
return person;
}
public void setPerson(String person) {
this.person = person;
}
public Integer[] getType() {
return type;
}
public void setType(Integer[] type) {
this.type = type;
}
public A(String company, String dept, String person, Integer[] type) {
this.company = company;
this.dept = dept;
this.person = person;
this.type = type;
}
@Override
public boolean equals(Object o) {
A a = (A) o;
if (a.company.equals(this.company) && a.dept.equals(this.dept)
&& a.person.equals(this.person)) {
return true;
}
return false;
}
@Override
public String toString() {
return this.company + " " + this.dept + " " + this.person + " "
+ Arrays.toString(this.type);
}
public A add(A a) {
Integer[] temp = null;
int i = 0;
if (this.equals(a)) {
for (int j : this.type) {
if (temp == null) {
temp = new Integer[a.type.length];
}
temp[i] = j + a.type[i];
i++;
}
return new A(this.company, this.dept, this.person, temp);
}
return null;
}
/**
*
* 测试
*
*/
public static void main(String[] args) {
A a1 = new A("维纳", "开发二部", "张三", new Integer[] { 1, 0, 0, 0, 0, 0, 0,
2, 1, 8, 0 });
A a2 = new A("维纳", "开发二部", "张三", new Integer[] { 1, 0, 0, 0, 0, 0, 0,
2, 1, 8, 0 });
A a3 = new A("维纳", "开发二部", "李四", new Integer[] { 1, 0, 0, 0, 0, 0, 0,
2, 1, 8, 0 });
A a4 = new A("维纳", "开发二部", "张三", new Integer[] { 1, 0, 0, 0, 0, 0, 0,
2, 1, 8, 0 });
A a5 = new A("维纳", "开发二部", "李四", new Integer[] { 1, 0, 0, 0, 0, 0, 0,
2, 1, 8, 0 });
List<A> l = new ArrayList<A>();
l.add(a1);
l.add(a2);
l.add(a3);
l.add(a4);
l.add(a5);
List<A> l2 = new ArrayList<A>();
for (A a : l) {
if (!l2.contains(a)) {
l2.add(a);
continue;
}
for (int i = 0; i < l2.size(); i++) {
if (l2.get(i).equals(a)) {
l2.set(i, l2.get(i).add(a));
// System.out.println(l2.get(i));
}
}

这个是打印结果
[维纳 开发二部 张三 [3, 0, 0, 0, 0, 0, 0, 6, 3, 24, 0], 维纳 开发二部 李四 [2, 0, 0, 0, 0, 0, 0, 4, 2, 16, 0]]

}
System.out.println(l2);
}
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-12-18
姓名相同还是什么相同呢?
用Map主键做key装起来。其中一个List.在循环另外一个List或者这个Map里面判断主键是否相同。
例如在循环map的时候
for(String key:map.keySet()){
List curList = map.get(key);
List otherList = //这个我不清楚你的List怎么来的。反正你自己给过来
//下面就是加判定的代码了。如果相同,就相加
再map(key,《//相加后的List》);

}

话说哥们你这个是项目功能需求吧。
= =!你怎么混到公司里面去的。
还有你的图里维纳软件ps一下嘛。等下你经理看到你来百度。尼玛你的工资要很久才会涨的额
第2个回答  2012-12-18
list.get();能取出数值,括号里填你的type在第几个里面(下标从0开始),然后再.get(),括号里填你数组的下标值,取出两个来 进行相加就可以了。
第3个回答  2012-12-18
先写理论

抄一份List
从第1个开始,从第2个开始找相同的,找到就合并并且remove掉(注意会引起List size改变而容易出错的),完了remove第1个、再回去从第1个开始找。追问

主要是把tyle中的数据还要相加

追答

就说你说比较难的地方

ArrayList typeFound = found.getType(); //found是合并后的对象
ArrayList typeNewCmp = newCmp.getType(); //循环中找到相同的对象
for(int k=0; k<typeFound.size(); k++){
typeFound.set(k, typeFound.get(k)+typeNewCmp.get(k));  //整数累加、合并
}
found.setType(typeFound);//更新found合并后的对象

本回答被提问者和网友采纳

java中如何把ArrayList中相同的两条记录相加。ArrayList中还有一个...
public static void main(String[] args) { A a1 = new A("维纳", "开发二部", "张三", new Integer[] { 1, 0, 0, 0, 0, 0, 0,2, 1, 8, 0 });A a2 = new A("维纳", "开发二部", "张三", new Integer[] { 1, 0, 0, 0, 0, 0, 0,2, 1, 8, 0 });A...

List 去除重复数据的五种方式
第一种方法:使用LinkedHashSet删除ArrayList中的重复数据。LinkedHashSet在内部完成两件事,即在不改变元素顺序的情况下去除重复元素。例如,创建一个包含整数的ArrayList,使用LinkedHashSet将列表转换为无重复元素的集合,然后将其内容返回到ArrayList中,即可去除重复的整数。第二种方法:使用Java 8新特性Str...

java 两个list可以相加吗
当然可以,但是要注意类型 : List<Cat> , List<Dog>,这2中你要相加嘛? 相同的直接加到新的list中就是了,不同的要使用 List<Object>去添加,需要注意的是 ,需要有一定的排序,取出来的数据可以强制转换: Cat cat=(Cat)List<Object>.get(0);...

求java代码,需要从arraylist里取某列数,比较,计算相同的数量,然后再...
import java.util.ArrayList;import java.util.List;public class test { List<List<String[]>> all=new ArrayList<List<String[]>>();List list=new ArrayList();\/\/测试数据 String[] x={"A","xxxxx","A币","100"};String[] x1={"A","xxxxx","A币","200",};String[] x2={"B...

java中 两个list怎么合并啊?有list,list1,list2。想要list等于list1...
Java将两个list合并,只需要把list1和list2内容都添加都集合list中即可,如下:package com.test;import java.util.ArrayList;import java.util.List;public class TestA {\/** * @param args *\/public static void main(String[] args) {\/\/定义集合1List<String> list1=new ArrayList<String>();...

怎样将一个list中重复的整数相加
用foreach历遍list相加就可以了啊 List <Integer>list = new ArrayList<Integer>();list.add(1);list.add(2);list.add(3);list.add(2);list.add(3);int n=0;for(int i:list){ n=n+i;} System.out.println(n);

用Java编写程序 任意两个输入两个整数 输出它们相加的结果
import java.util.Scanner;public class Program1 {public static void main(String[] args) {Scanner i = new Scanner(System.in);int a = i.nextInt();int b = i.nextInt();if (a > 100 || a < 10 || b>100 ||b<10) { System.out.println("输入错误,请输入两位数!");}...

在java中怎样求多个arraylist集合的交集?
用Collection提供的retainAll方法,如下是测试代码:import java.util.*;public class TestList1{ public static void main(String[] args){ List list1=new ArrayList();list1.add("A");list1.add("B");list1.add("C");List list2=new ArrayList();list2.add("B");list2.add("C");...

在java中怎么把相同时间的金额合并起来
java类中的话不知道你怎么封装的list的,手动判断,public static void main(String[] args) {List<Map<String, Object>> listMap=new ArrayList<>();for (Double i = 0.0; i < 100; i++) {\/\/封装一个list集合Map<String, Object> xMap=new HashMap();xMap.put("price", 10*i);if...

java怎样合并两个list?
1. 使用addAll方法 最直接的合并方式是使用`addAll`方法。这个方法可以将一个列表的所有元素添加到另一个列表中。java List list1 = new ArrayList<>;List list2 = new ArrayList<>;list1.addAll; \/\/ 将list2的元素添加到list1中 2. 使用stream流操作 Java 8引入了Stream API,可以使用它来...

相似回答