本机环境:Windows XP 32位MSYS2地址:http://sourceforge.net/projects/msys2/下载32位版本,地址:http://sourceforge.net/projects/msys2/files/Base/i686/当前压缩包名称:msys2-base-i ...
分类:
其他好文 时间:
2017-02-02 10:50:04
阅读次数:
219
C语言中,一个函数最多只能实现一个返回值。 [cpp] view plain copy int func (int b) { int a=5; if (a>b) return a; else return b; return 0; } [cpp] view plain copy [cpp] view ...
分类:
其他好文 时间:
2017-02-02 10:49:59
阅读次数:
159
Given an unsorted array nums, reorder it in-place such that nums[0] <= nums[1] >= nums[2] <= nums[3].... For example, given nums = [3, 5, 2, 1, 6, 4], ...
分类:
其他好文 时间:
2017-02-02 10:50:02
阅读次数:
180
nmap详解Linux/Unix端口扫描工具nmap,先放个常用的参数,占位日后补全~nmap -v -p 1-65535 -sV -0 -sS -T4 192.168.1.1 ...
分类:
其他好文 时间:
2017-02-02 10:50:40
阅读次数:
145
用php链接到mysqli,成功后利用,mysqli_query()创建数据库以及数据表。 <php $con = mysqli_connect("localhost","root","root"); if(!$con) { die("没有连接成功".mysqli_error()); }; if(! ...
分类:
数据库 时间:
2017-02-02 10:47:26
阅读次数:
218
Win32: GetMessage, DispatchMessage, SendMessage, WinProc。 Android: Handler, Looper, Thread。 OC: dispatch_async。 ...
分类:
移动开发 时间:
2017-02-02 10:49:48
阅读次数:
243
Android Service 一是处理Intent请求,二是像COM组件一样提供接口访问功能。Context.startService和Service.onStart这样的命名设计真误导人。 ...
分类:
移动开发 时间:
2017-02-02 10:48:24
阅读次数:
181
原题链接在这里:https://leetcode.com/problems/construct-the-rectangle/ 题目: For a web developer, it is very important to know how to design a web page's size. ...
分类:
其他好文 时间:
2017-02-02 10:47:01
阅读次数:
161
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, ...
分类:
其他好文 时间:
2017-02-02 10:47:18
阅读次数:
157
使用mingw 对libcURL,openSSL,zLib交叉编译 将三个库解压到同一目录下 比如取目录名为 "source" 的目录 提前安装active-perl 配置好mingw和msys环境 否则编译会出错 - source + curl-xxx + openssl-1.0.xx + zli ...
分类:
Web程序 时间:
2017-02-02 10:45:22
阅读次数:
281
首先要知道Location这个对象以及这个对象中的一些属性: href:设置或返回完整的url.如本博客首页返回http://www.cnblogs.com/wymninja/ host:设置或返回主机名和当前的URL的端口号。本博客首页返回www.cnblogs.com hostname:设置或返 ...
分类:
Web程序 时间:
2017-02-02 10:45:15
阅读次数:
195
1,使用键盘控制位置的移动没有使用glutSpecialFunc,glutKeyboardFunc因为我这个win32程序。2,相机类里面定义了相机的三个方向成员:位置(position),target向量和up向量前后移动是最简单的,因为这俩种移动方向和tartget向量在一条线上,我们只需要从起... ...
分类:
其他好文 时间:
2017-02-02 10:43:24
阅读次数:
179
守护进程(Daemon): 是一种运行在后台的进程,它独立于控制终端并且周期性的执行某种任务或等待处理某些发生的事件。 等于WINDOWS中的服务。 脱离终端的控制。它从被执行的时候开始运转,直到整个系统关闭才退出。 Linux系统中是通过ssh服务实现的远程登录功能,默认ssh服务端口号为 22。 ...
分类:
系统相关 时间:
2017-02-02 10:42:35
阅读次数:
168
?byte: java中最小的数据类型。1字节/8位。-128(2^7)~127(2^7-1),默认值0。 short: 短整型,2字节/16位,取值范围-32768(--2^15)~32767(2^15-1),默认值0 int: 整型,4字节/32位,取值范围-2147483648(-2^31)~ ...
分类:
编程语言 时间:
2017-02-02 10:40:49
阅读次数:
156
1、工作做好的同时扩展其他业余爱好,滑旱冰、股票等以及提升自己对基督的认识 2、学习除C语言之外的两个编程语言,Java、C++。看懂常用shell perl脚本语言 3、了解驱动更底层的硬件知识与熟悉电路图设计原理 4、认识Linux内核与Android层Framework工作流程 5、我认真的在 ...
分类:
其他好文 时间:
2017-02-02 10:40:45
阅读次数:
166
2015年10月份,微博上偶然看到Let's Encrypt 推出了beta版,作为一个曾经被https虐出血的码农来说,这无疑是一个重磅消息。并且在全站Https的大趋势下,Let's Encrypt 脱颖而出,无疑会对传统SSL证书提供商造成不小的打击,并将Https的应用和推广上升到一个空前火 ...
分类:
其他好文 时间:
2017-02-02 10:41:22
阅读次数:
245
runtime的消息机制前面提到过编译器最终会把我们的消息发送转化为函数调用
消息发送 [object sendMassage]
首先编译器会在运行时将上面的例子转化为objc_msgSend(ob...
分类:
其他好文 时间:
2017-02-02 04:50:14
阅读次数:
284