一.十转二 进制
进制问题,主要需要将 数 % 要去的进制。/ 要去的进制。余数分别*自己的进制 N次方。
十转二,二转十
int TtoB(int v)
{int result 0;int Ten 1;while (v ! 0){int d v % 2;result d * Ten;Ten * 10;v / 2;}return result;
}
int…
SpringBoot3整合RocketMQ问题处理
磁盘空间不够
报错如下:
org.apache.rocketmq.client.exception.MQBrokerException: CODE: 14 DESC: service not
available now. It may be caused by one of the following reasons: the brokers disk isfull [CL: 0.92 CQ: …