java中如何把ArrayList中相同的两条记录相加。ArrayList中还有一个list,下图相加type
4个回答
展开全部
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);
}
}
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);
}
}
展开全部
姓名相同还是什么相同呢?
用Map主键做key装起来。其中一个List.在循环另外一个List或者这个Map里面判断主键是否相同。
例如在循环map的时候
for(String key:map.keySet()){
List curList = map.get(key);
List otherList = //这个我不清楚你的List怎么来的。反正你自己给过来
//下面就是加判定的代码了。如果相同,就相加
再map(key,《//相加后的List》);
}
话说哥们你这个是项目功能需求吧。
= =!你怎么混到公司里面去的。
还有你的图里维纳软件ps一下嘛。等下你经理看到你来百度。尼玛你的工资要很久才会涨的额
用Map主键做key装起来。其中一个List.在循环另外一个List或者这个Map里面判断主键是否相同。
例如在循环map的时候
for(String key:map.keySet()){
List curList = map.get(key);
List otherList = //这个我不清楚你的List怎么来的。反正你自己给过来
//下面就是加判定的代码了。如果相同,就相加
再map(key,《//相加后的List》);
}
话说哥们你这个是项目功能需求吧。
= =!你怎么混到公司里面去的。
还有你的图里维纳软件ps一下嘛。等下你经理看到你来百度。尼玛你的工资要很久才会涨的额
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
list.get();能取出数值,括号里填你的type在第几个里面(下标从0开始),然后再.get(),括号里填你数组的下标值,取出两个来 进行相加就可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先写理论
抄一份List
从第1个开始,从第2个开始找相同的,找到就合并并且remove掉(注意会引起List size改变而容易出错的),完了remove第1个、再回去从第1个开始找。
抄一份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合并后的对象
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询