Cocos2d-X中提供了非常丰富的动作特效
例如:网格动画
扭曲特效
3D瓷砖波动特效
程序代码:
#include "ActionEffect.h"
#include "HelloWorldScene.h"
static const char* _actionName[] =
{
"CCFadeOutBLTiles",
"CCFade...
分类:
其他好文 时间:
2014-11-13 16:41:21
阅读次数:
253
php面向对象中常用的关键字有final、static、const(1)final: 1,final不能修饰成员属性 2,final只能修饰类和方法 作用: 使用final修饰的类不能被子类继承 使用final修饰的方法不能被子类去覆盖 用来限制类不被继承,方法不能被覆盖就使用final(2、)st...
分类:
Web程序 时间:
2014-11-08 18:05:16
阅读次数:
219
最近写后端的时候,发现了一个问题平时,鉴权的时候都只是用到http 的 GET方法:static const char* pt_auth_url = "GET /iapppay/tokencheck?appid=11111&token=12jkjl1j12k12#$%^& HTTP/1.1\r\n....
分类:
编程语言 时间:
2014-11-06 19:58:52
阅读次数:
346
#include "ActionShow.h"
static const char* _actionName[] =
{
"CCMoveBy",
"CCMoveTo",
"CCRotateBy",
"CCRotateTo",
"CCScaleBy",
"CCScaleTo",
"CCSkewBy",
"CCSkewTo",
"CCJumpBy",...
分类:
其他好文 时间:
2014-11-01 21:50:34
阅读次数:
241
还是直接上代码再来解释吧。。。。static JavaVM* g_JavaVM = NULL;static jobject g_InterfaceObject = 0;static const char *g_JavaClassName = "xxx/xxx/xxxx/Provider";stati...
分类:
编程语言 时间:
2014-10-29 01:54:04
阅读次数:
287
题意:自行脑补
做法:直接开权值那么多的二维树状数组暴力。
Code:
#include
#include
#include
#include
using namespace std;
inline int getc() {
static const int L = 1 << 15;
static char buf[L], *S = buf, *T = buf;...
分类:
Web程序 时间:
2014-10-17 10:17:17
阅读次数:
241
不可重叠最长重复子串http://poj.org/problem?id=1743 1 #include 2 #include 3 using namespace std; 4 class Suffix_Array { ///后缀数组 5 static const int MV=20010;...
分类:
编程语言 时间:
2014-10-16 19:46:43
阅读次数:
290
在C语言中,关键字static有三个明显的作用:1). 在函数体,一个被声明为静态的变量在这一函数被调用过程中维持其值不变。2). 在模块内(但在函数体外),一个被声明为静态的变量可以被模块内所用函数访问,但不能被模块外其它函数访问。它是一个本地的全局变量。3). 在模块内,一个被声明为静态的函数只...
分类:
其他好文 时间:
2014-10-14 22:26:59
阅读次数:
198
(一)
为什么有人想要替换operator new 和 operator delete呢?三个常见的理由:
(1)用来检测运用上的错误。
(2)为了强化效果。
(3)为了收集使用上的统计数据。
(二)
下面是个快速发展得出的初阶段global
operator new,促进并协助检测“overruns”或“underruns”。
static const int ...
分类:
编程语言 时间:
2014-09-29 13:37:21
阅读次数:
237