java.lang.Exception: Test class should have exactly one public zero-argument constructor at org.junit.runners.BlockJUnit4ClassRunner.validateZeroAr...
分类:
其他好文 时间:
2014-12-11 15:35:53
阅读次数:
535
先给出msg的数据结构:truct msg {TAILQ_ENTRY(msg) c_tqe; TAILQ_ENTRY(msg) s_tqe; TAILQ_ENTRY(msg) m_tqe; uint64_t id; int route_idx; struct msg *peer; struct co...
分类:
其他好文 时间:
2014-12-10 19:44:57
阅读次数:
195
Access to a?larger general-purpose register file with 31 unbanked registers (0-30), with each register extended to 64 bits. 31个通用寄存器,外加一个r31作为zero register。 Floating point and Advan...
分类:
其他好文 时间:
2014-12-10 16:35:06
阅读次数:
242
19、预处理指令
1、文件中的#include语句之前只能是其他预处理指令或注释
2、#include指令中的头文件名字里不能出现非标准字符
3、#include预处理指令应该跟随或“filename”序列
4、C的宏只能扩展为用大括号括起来的初始化、常量、小括号括起来的表达式、类型限定符、存储类标识符或do-while-zero
5、宏不能在块中进行#define和#undef
6、...
分类:
其他好文 时间:
2014-12-09 14:06:38
阅读次数:
342
read_timeout函数封装//读超时函数,但不包含读操作
int read_timeout(int fd, long waitSec)
{
int returnValue = 0;
if (waitSec > 0)
{
fd_set readSet;
FD_ZERO(&readSet); //清零
FD_SET...
Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:Elemen...
分类:
其他好文 时间:
2014-12-07 00:06:32
阅读次数:
228
3SumGiven an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:El...
分类:
其他好文 时间:
2014-12-05 22:38:12
阅读次数:
250
前两天参加我们金山软件的投资者股东大会,我跟他们讲的概念就是all in,我要把金山这个3、4billion的公司当成start-up,从zero开始,all in。我说我们要投10亿美金以上。他们问我们有多少钱,我们加起来有12亿美金,我说不需要工资,我只是告诉你一下,未来的财报可能,赚的钱可能都...
分类:
移动开发 时间:
2014-12-05 12:22:57
阅读次数:
161
这几天在看文章的时候,看到这么一段话:“First, we normalize thegrayscale intensity in the eye region for each of the aligned facialimages to zero mean and unit variance.”...
分类:
其他好文 时间:
2014-12-05 12:09:19
阅读次数:
549
SQL中的单记录函数 1.ASCII 返回与指定的字符对应的十进制数; SQL> select ascii('A') A,ascii('a') a,ascii('0') zero,ascii(' ') space from dual; A A ZERO SPACE --------- -----.....
分类:
数据库 时间:
2014-12-04 17:09:16
阅读次数:
243