long数组与Long数组转换_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > long数组与Long数组转换

long数组与Long数组转换

 2013/12/11 19:09:06  mazhen20073492  程序员俱乐部  我要评论(0)
  • 摘要:Set<Long>idsSet=newHashSet<Long>();//过滤没有详情的idfor(Entry<Long,UserProfile>entry:userProfileMap.entrySet()){UserProfileuserProfile=entry.getValue();if(userProfile==null){continue;}idsSet.add(userProfile.getUserId());
  • 标签:数组
class="java" name="code">Set<Long> idsSet = new HashSet<Long>();
		//过滤没有详情的id
		for(Entry<Long, UserProfile> entry : userProfileMap.entrySet()){
			UserProfile userProfile = entry.getValue();
			if (userProfile == null) {
				continue;
			}
			idsSet.add(userProfile.getUserId());
		}
		
		Long[] idsLong = idsSet.toArray(new Long[0]);
		int idsLen = idsLong.length;
		long[] idslong = new long[idsLen];
		for(int i = 0; i < idsLen; i++){
			idslong[i] = idsLong[i];
		}

发表评论
用户名: 匿名