- 博客(1)
- 资源 (1)
- 收藏
- 关注
原创 java 中如何快速统计一个int数转二进制数中1的个数
/** * 统计一个(int)数二进制数1的个数 * @param tag * @return */ public static int countIntToBinaryOfOne(int tag){ int count=0; while (tag!=0) { if((tag&1)==1){//是1 count++; } ...
2018-03-05 16:34:58 1321
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人