摘要:
转自:https://juejin.cn/post/7094272373930590245#heading-9,https://zhuanlan.zhihu.com/p/344269737 1、消息队列基本 作用:应用解耦(作为中介)、削峰填谷。redis做mq的优点:轻量级,使用和运维成本低。 m 阅读全文
摘要:
转自:https://blog.csdn.net/qq_26499321/article/details/72085592,https://blog.icrystal.top/archives/13.html 1、线程不安全 线程安全 就是多线程访问时,采用了加锁机制,当一个线程访问该类的某个数据时 阅读全文
摘要:
转自:https://blog.csdn.net/m0_51913750/article/details/130986465 1、介绍 assert 是一个宏,用于在运行时检查一个条件是否为真,如果条件不满足,则运行时将终止程序的执行并输出一条错误信息。条件满足为true时,不做任何操作。 asse 阅读全文
摘要:
转自:https://vimsky.com/examples/usage/strtoul-function-in-c-c.html 1、介绍 unsigned long int strtoul(const char *str, char **end, int base); str指向源字符串,end 阅读全文
摘要:
转自:https://blog.csdn.net/NiuYoohoo/article/details/84930404 1、介绍 errno 是用于错误指示的预处理器宏,数个标准库函数通过写入正整数到 errno 指示错误。 程序启动时 errno 的值为 0 ,而且尽管不管在错误发生与否时,允 阅读全文