在java中怎么判断集合里面每个元素的个数
4个回答
展开全部
List集合有一个方法可以取得元配脊素培敏渗的个数
list.size(); 取得元拿老素的个数
list.size(); 取得元拿老素的个数
更多追问追答
追问
我想要的结果是 1有两个 2 有两个 3有一个
追答
这个就需要你循环判断了,自己写个方法取出来
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.util.ArrayList;
import java.util.List;
public class test {
public static void main(String[] args) {
List<Integer>消友桥 l = new ArrayList<Integer>拿猛();
l.add(1);
l.add(1);
l.add(2);
l.add(2);
l.add(3);
int count1 = 0;
int count2 = 0;
int count3 = 0;
for (int i = 0; i < l.size(); i++) {
if (l.get(i) == 1) {
count1 += 1;
}
if (l.get(i) == 2) {
count2 += 1;
}
if (l.get(i) == 3) {
count1 += 1;
}
}
System.out.println("1的个数告余" + count1 + " 2的个数" + count2 + " 3的个数"
+ count3);
}
}
import java.util.List;
public class test {
public static void main(String[] args) {
List<Integer>消友桥 l = new ArrayList<Integer>拿猛();
l.add(1);
l.add(1);
l.add(2);
l.add(2);
l.add(3);
int count1 = 0;
int count2 = 0;
int count3 = 0;
for (int i = 0; i < l.size(); i++) {
if (l.get(i) == 1) {
count1 += 1;
}
if (l.get(i) == 2) {
count2 += 1;
}
if (l.get(i) == 3) {
count1 += 1;
}
}
System.out.println("1的个数告余" + count1 + " 2的个数" + count2 + " 3的个数"
+ count3);
}
}
更多追问追答
追问
你都是写死的 假设我集合里面有1000个不同的 你还定义1000个变量
追答
不需要定义,直接判断count++记录就行了最后返回count的值不就行了? 除非你要的是List里面有不同的值,不同的值也有不同个数,输出这些不同的值的个数,是这个意思吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int count1 = 0 ;
int count2 = 0;
int count3 = 0;
for(String str : list){
if(Integer.parseInt(str)==1){
count1++;
}
if(Integer.parseInt(str) == 2){
count2++;
}
if(Integer.parseInt(str)== 3){
count3++;
}
}
int count2 = 0;
int count3 = 0;
for(String str : list){
if(Integer.parseInt(str)==1){
count1++;
}
if(Integer.parseInt(str) == 2){
count2++;
}
if(Integer.parseInt(str)== 3){
count3++;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Collections类空侍世
static int frequency(Collection<?>谈核 c, Object o)
返回指定 collection 中等斗肢于指定对象的元素数
static int frequency(Collection<?>谈核 c, Object o)
返回指定 collection 中等斗肢于指定对象的元素数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询