这两天终于闲了一下,就顺手又把quick捡起来又学了学,一直都觉得quick比cocos2dx那套lua绑定要方便许多,今天试了下android返回键的监听,还是挺好弄的,所以就有了这篇。
首先说明一下使用的quick版本——2.2.5。
直接上代码
function MainScene:addBackEvent()
if device.platform == "android" t...
分类:
移动开发 时间:
2014-08-07 23:22:55
阅读次数:
468
原文地址:http://infiniteloop.in/blog/quick-python-performance-optimization-part-i/
往往小的改变却能带来大的性能提升,
下面说下python中的几点性能优化。
1.使用timeit模块
2.减少函数的调用次数
3.使用xrange代替range
4.''.join()代替+,+=
5.while 1 代替 wh...
分类:
编程语言 时间:
2014-08-06 19:28:32
阅读次数:
247
Description
Linda is a teacher in ACM kindergarten. She is in charge of n kids. Because the dinning hall is a little bit far away from the classroom, those n kids have to walk in line to the dinnin...
分类:
其他好文 时间:
2014-08-06 10:37:51
阅读次数:
257
#include int partition(int A[], int p, int q) { int x = A[p]; int i = p; int j; for (j=p+1; jint quick_sort(int a[], int low, int high)//一...
分类:
其他好文 时间:
2014-08-05 22:23:40
阅读次数:
289
Today, I’d like to take a quick moment to demonstrate how to make a simple file server usingRewrite, and any Servlet Container, such as Tomcat, Wildfl...
分类:
其他好文 时间:
2014-08-05 15:35:29
阅读次数:
282
本文基于Quick cocos2d x这个游戏框架,为了行文流畅,后面都简称Q2D导出自定义c++类给项目使用已经有了现成的例子了详见:http://quick.cocos.org/?p=235我们讨论的是如何导出给框架,使得我们以后每次新建项目的时候,都能使用到这个类咱也是新手,忙活了会,编译成功...
分类:
编程语言 时间:
2014-08-05 00:01:18
阅读次数:
250
最近在论坛上下载到了一个Cocos2dx的单机跑酷例子,也不知道是2.x版的,花了一天时间试着把他改成3.1.1的试试,现在已经可以顺利编译的,但是还是有Heap Free的问题,调试了好几天,真心累了。代码地址如下:https://github.com/AdoBeatTheWorld/waytom...
分类:
Web程序 时间:
2014-08-01 16:00:51
阅读次数:
287
原文:http://peeterjoot.wordpress.com/2010/07/07/avoiding-gdb-signal-noise/A quick note for future reference (recorded elsewhere and subsequently lost).S...
分类:
数据库 时间:
2014-07-31 02:44:25
阅读次数:
303
Android 系统版本很多,较新的 4.4 ,较老的 2.3 ,都有人用。 Qt on Android 开发的 Android 应用,默认在 Android 设备上是非全屏的。而有些应用的需求是全屏显示,比如游戏。那么怎么样才能做到这点呢?...
分类:
移动开发 时间:
2014-07-29 15:15:28
阅读次数:
434
在附加数据库的时候,出现错误“附加数据库时出错,有关详细信息,请单击“消息”列中的超链接。”
点击“确定”,打开消息列中的超链接,弹出错误框“执行Transact-SQL语句或批处理时发生了异常。无法升级到数据库‘charge_sys’,因为它是只读的,或者只有只读文件。请将数据库或文件设为可写,然后重新运行恢复操作。”
错误原因:这是NTFS的权限问题(磁盘分区格式),NTFS格...
分类:
数据库 时间:
2014-07-28 00:25:59
阅读次数:
248