摘要:
The SnailA snail is at the bottom of a 6-foot well and wants to climb to the top. The snail can climb 3 feet while the sun is up, but slides down 1 foot at night while sleeping. The snail has a fatigue factor of 10%, which means that on each successive day the snail climbs 10%3 = 0.3 feet less than 阅读全文
摘要:
ipcs命令是linux/uinx上提供关于一些进程间通信方式的信息,包括共享内存,消息队列,信号ipcs用法ipcs -a 是默认的输出信息 打印出当前系统中所有的进程间通信方式的信息ipcs -m 打印出使用共享内存进行进程间通信的信息ipcs -q 打印出使用消息队列进行进程间通信的信息ipcs 0s 打印出使用信号进行进程间通信的信息 输出格式的控制 ipcs -t 输出信息的详细变化时间 ipcs -p 输出ipc方式的进程ID ipcs -c 输出ipc方式的创建者/拥有者 ipcs -c 输出ipc各种方式的在该系... 阅读全文
摘要:
select count(姓名) as 重复次数,姓名from 某表 group by 姓名order by 重复次数 asc首先,group by 姓名,可以将所有相同姓名的项集合在一起。然后,count(姓名),将姓名次数进行统计,然后作为重复次数,最后,order by通过重复次数排序,asc表示排序为由小到大,即递增顺序。 阅读全文
摘要:
1、首先来看这里的CRichListWnd已经不再是从CWindowWnd继承了classCRichListWnd:publicWindowImplBase从WindowImplBase中,可以看到有三个抽象函数:virtualCDuiStringGetSkinFolder()=0;virtualCDuiStringGetSkinFile()=0;virtualLPCTSTRGetWindowClassName(void)const=0;这些都很简单,只是返回固定的string 2、看看WindowImplBaseclass UILIB_API WindowImplBase : public 阅读全文
摘要:
刚接触Android移动开发,第一次下载Titanium,第一次下载ADT,第一次看Javascript代码,N多第一次......慢慢摸索了一个礼拜把移动开发的工具链的配置学习了一下,抛砖引玉,但愿大家别再浪费时间于工具链的搭建工作,如有写错万望指正。 网络直接连google的repository一直不太稳定,大家还是搞个VPN或者PPTP。 安装ADT (Android Developer Tools) Bundle http://developer.android.com/sdk/index.html 安装Python 2.7 http://www.python.org/... 阅读全文