问题:使用 Red Hat Enterprise Linux Server(RHEL) yum安装软件时显示 This system is not registered with RHN. RHN support will be disabled. 原因: Red Hat Enterprise Li ...
分类:
其他好文 时间:
2016-11-12 14:10:06
阅读次数:
374
static int icmp_cksum(unsigned char *data, int len) { int nleft = len; uint16_t *data_tmp = (uint16_t *)data; int sum = 0; uint16_t tmp = 0; while(nle ...
分类:
其他好文 时间:
2016-11-12 11:49:42
阅读次数:
188
第一,首先菜鸟教程 网址:http://www.runoob.com/ ps: 菜鸟教程(www.runoob.com)提供了最全的编程技术基础教程, 介绍了HTML、CSS、Javascript、Python,Java,Ruby,C,PHP , MySQL等各种编程语言的基础知识。菜鸟教程(www ...
分类:
微信 时间:
2016-11-11 23:02:41
阅读次数:
407
资料汇总官网:http://square.github.io/okhttp/文档:https://github.com/square/okhttp/wiki GitHub:https://github.com/square/okhttpokio的GitHub:https://github.com/s... ...
分类:
Web程序 时间:
2016-11-11 19:31:34
阅读次数:
402
14.2.5.3 INSERT ... ON DUPLICATE KEY UPDATE Syntax 14.2.5.3 INSERT ... ON DUPLICATE KEY UPDATE Syntax 14.2.5.3 INSERT ... ON DUPLICATE KEY UPDATE Synt ...
分类:
其他好文 时间:
2016-11-11 17:28:15
阅读次数:
156
1.打开project.pbxproj,搜com.apple.Push 改成enabled = 0(在projectName.xcodeproj文件上右键“显示包内容”,用文本编辑器打开“project.pbxproj”文件) 2.在build settings里搜索code sign,并把后面的路 ...
分类:
移动开发 时间:
2016-11-10 16:35:45
阅读次数:
202
unsigned/signed,同类型宽度都是一样,short占2字节共16个位,无符号可以完全利用这16个位来表示数字,就有2^16=65536中可能,可以表示0~65535,而有符号类型要用到最高位表示符号,2^15 = 32768,所以能表示-32768~32767,为了不出现两个0的情况,+ ...
分类:
编程语言 时间:
2016-11-10 02:12:50
阅读次数:
244
190. Reverse Bits Reverse bits of a given 32 bits unsigned integer. For example, given input 43261596 (represented in binary as 0000001010010100000111 ...
分类:
其他好文 时间:
2016-11-09 11:38:35
阅读次数:
145
使用设值方法为属性赋值时 assign、retain、copy三个特性的实现 self.property = newValue; assign的特性会是这样: property = newValue; retain特性会是这样 if (property!=0) { [property release ...
分类:
其他好文 时间:
2016-11-08 22:47:32
阅读次数:
233