尽管自己看了书,老师讲了课,以为对PV操作理解了,但是遇到题的时候还是不会思考。下面这道题,花了很长时间才弄明白,现在把思路写出来,大家共同探讨下。
大家都来思考:
信号量S1、S2、S3、S4分别代表什么含义?
误区:
把S1、S2、S3、S4当成是P1、P2、P3、P4的信号量
关键点:
1.P1执行不需要信号量的制约
2.信号...
分类:
其他好文 时间:
2014-10-13 14:54:09
阅读次数:
190
主要目的是备忘,如果有幸能帮上其他朋友,那最好了我的游戏使用的是cocos2dx 2.2.5,当然,使用2.1.x ~ 2.2.5版本都是可以的,没有什么变动。一、Java调用C++1、在JAVA项目中,声明一个带“native”的静态函数,比如 (假设包名是 com.ooxx.mygameclas...
分类:
其他好文 时间:
2014-10-13 02:38:28
阅读次数:
169
with temp as( select 'A01' nation ,1 as S1,2 as S2, 3 as S3 from dual union all select 'A02' nation ,null as S1,5 as S2, 6 as S3 from dual)select ...
分类:
数据库 时间:
2014-10-11 01:12:44
阅读次数:
230
背景最近在重读“Dynamo: Amazon’s Highly Available Key-value Store”(经典好文,推荐!),文章4.4 中聊到了Data Version为了提高可用性,Dynamo允许“更新”操作异步的传播到其他副本,当出现多个写事件并发执行时,可能会导致系统中出现多个版本的对象。由于我们无法保证分布式系统中的多个结点的物理时钟是完美同步的,所以通过物理时钟来确定事件...
分类:
其他好文 时间:
2014-10-10 21:35:54
阅读次数:
213
实例如下:import botofrom boto import connectionimport os, mathfrom filechunkio import FileChunkIO# fill in the id and keyconn = boto.connect_s3()print con...
分类:
编程语言 时间:
2014-10-10 20:50:14
阅读次数:
544
1.题目 如标题,求大于整数N(N>=0)的第一个回文数的字符串表示形式。 这个题目也是当时笔试第一次见到,花了一个小时才做出了。慢慢总结还是挺简单的。2.分析 分析如下: (1)一位数N(9除外)。 第一个大于N回文数等于N+1,如大于3的第一个回文数是4。 (2)奇数位(一...
分类:
其他好文 时间:
2014-10-10 14:28:00
阅读次数:
277
今天测试人员给提了一个Bug:
场景:
三星S3手机,已经更新到了最新版本
步骤:
1.进入app-更多-关于
2.点击检查更新
3.查看页面返回消息,查看api日志返回消息
结果:
app页面没有任何提示信息,api日志有返回消息,消息如下:
2014-10-08 17:52:06[ INFO] com.centrin.ciyun.api.CiyunServlet --...
分类:
移动开发 时间:
2014-10-09 16:01:59
阅读次数:
280
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcbcac",
return true.
When s3 = "aadbbbaccc", retur...
分类:
其他好文 时间:
2014-10-09 15:10:14
阅读次数:
179
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcbcac", return true.
When s3 = "aadbbbaccc", ret...
分类:
其他好文 时间:
2014-10-06 17:31:39
阅读次数:
251
Givens1,s2,s3, find whethers3is formed by the interleaving ofs1ands2.For example,Given:s1="aabcc",s2="dbbca",Whens3="aadbbcbcac", return true.Whens3="...
分类:
其他好文 时间:
2014-10-06 10:52:30
阅读次数:
178