
获得徽章 0
- // 数据汇总
List<MyDTO> dtoList = Stream.of(majorList, childList).flatMap(Collection::stream).distinct().collect(Collectors.toList());
Map<String, List<String>> x = bugList.stream().collect(Collectors.groupingBy(MyDTO::getNo,
Collectors.mapping(MyDTO::getName, Collectors.toList())));展开评论点赞 - public static void main(String[] args) {
int num = 1534567890;
System.out.println(intToHexString(num));
byte a4 = (byte) ((num >>> 24) & 0xFF);
byte a3 = (byte) ((num >>> 16) & 0xFF);
byte a2 = (byte) ((num >>> 8) & 0xFF);
byte a1 = (byte) ((num) & 0xFF);
System.out.printf(byteToHexString(a1));
int mergeNum = ((a4 & 0xff) << 24) + ((a3 & 0xff) << 16) + ((a2 & 0xff) << 8) + ((a1 & 0xff));
System.out.println(mergeNum);
}
private static String intToHexString(int iNum) {
return String.format("0x%s", Integer.toHexString(iNum));
}
private static String byteToHexString(byte bNum) {
//return String.format("0x%s\n", Integer.toHexString(bNum & 0xFF));
return String.format("0x%02x\n", bNum);
}展开评论点赞 - JOJO1 OP ジョジョ~その血の運命~ 富永TOMMY弘明
JOJO6 OP STONE OCEAN
JOJO6 ED Distant Dreamer Duffy
「相合之物」OP 坂本真綾「堇」
「DARLING in the FRANXX」OP KISS OF DEATH
斩赤红之瞳OP Skyreach 雨宫天
瑞克与莫蒂 ED For the Damaged Coda展开评论点赞