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

long数组与Long数组转换

时间:2015-09-11 17:50:12      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

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]);  //long[]转为Long[]
int idsLen = idsLong.length;
long[] idslong = new long[idsLen];  //分配空间
for(int i = 0; i < idsLen; i++){  //把Long[]转为long[]
    idslong[i] = idsLong[i];   
}

long a = new Long(0);  //非数组转换不需要考虑空间问题,数组转换则需要分配空间,如上



long数组与Long数组转换

标签:

原文地址:http://my.oschina.net/xsh1208/blog/505029

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