https://www.javaguides.net/2018/12/how-rabbitmq-works-and-rabbitmq-core-concepts.html n this quick article, we will learn what is RabbitMQ, how it wor ...
分类:
其他好文 时间:
2020-06-12 14:47:24
阅读次数:
74
1、mysql字符集乱码问题 参考这个博客的介绍内容https://www.cnblogs.com/digdeep/p/5228199.html, 一般设置SET NAMES = ‘XXX’即可统一字符集 2、mysql表字符集修改 针对的是已有数据的库更改字符集,主要分为以下几步,以下模拟从lat... ...
分类:
数据库 时间:
2020-06-08 13:06:45
阅读次数:
67
排序、去重与离散化 1. 排序 1.1 快速排序 1. 快速排序 #include <bits/stdc++.h> using namespace std; const int N = 1000010; int q[N]; void quick_sort(int q[], int l, int r) ...
分类:
编程语言 时间:
2020-06-08 11:03:33
阅读次数:
68
cocos2d-x利用引用计数进行内存自动管理, 是什么原理? 为什么能自动释放对象? 怎么做到的每帧最后释放? 研究cocos2d-x源码 所有继承自Ref的类,都可以做到自动释放实例,来看整个过程, 1、先看Ref类构造方法,所有Ref子类,创建后引用计数为初始为 1 2、Node * node ...
分类:
编程语言 时间:
2020-06-05 21:09:04
阅读次数:
74
像素格式是图像存储在GPU内存的方式。 你可能会见到以下像素格式: RGBA8888(32位)(kTexture2DPixelFormat_RGBA8888) RGBA4444(16位)(kTexture2DPixelFormat_RGBA4444) RGB5_A1(16位)(kTexture2DP ...
分类:
其他好文 时间:
2020-06-05 12:56:47
阅读次数:
93
参考 http://rocketmq.apache.org/docs/quick-start/ 启动NameSrv > nohup sh bin/mqnamesrv & > tail -f ~/logs/rocketmqlogs/namesrv.log The Name Server boot su ...
分类:
其他好文 时间:
2020-06-05 12:51:14
阅读次数:
168
cube-ui官网:https://didi.github.io/cube-ui/#/zh-CN/docs/quick-start 要求:vue-cli >= 3 安装:vue add cube-ui 安装过程:有些选项需根据需要选择。 注:使用了amfe-flexible。页面使用px就会自动转为 ...
分类:
其他好文 时间:
2020-06-04 15:24:43
阅读次数:
92
instantaneous adj./adv. ADJ-GRADED Something that is instantaneous happens immediately and very quickly. dialect n. N-COUNT A dialect is a form of a l ...
分类:
其他好文 时间:
2020-06-01 20:31:33
阅读次数:
82
ll result_len,result[maxn],level=0,trans[maxn]; ll quick(ll a,ll b,ll m) { ll ans=1; while(b>0) { if(b&1) ans=ans*a%m; a=a*a%m; b>>=1; } return ans; } ...
分类:
其他好文 时间:
2020-06-01 14:04:02
阅读次数:
63
adroit adj. ADJ-GRADED Someone who is adroit is quick and skillful in their thoughts, behaviour, or actions. abdicate vt./vi. VERB If a king or queen ...
分类:
其他好文 时间:
2020-05-28 00:54:08
阅读次数:
79