码迷,mamicode.com
首页 >  
搜索关键字:static、const    ( 208个结果
Cocos2d-X中的动作特效
Cocos2d-X中提供了非常丰富的动作特效 例如:网格动画 扭曲特效 3D瓷砖波动特效 程序代码: #include "ActionEffect.h" #include "HelloWorldScene.h" static const char* _actionName[] = { "CCFadeOutBLTiles", "CCFade...
分类:其他好文   时间:2014-11-13 16:41:21    阅读次数:253
PHP中面向对象的关键字
php面向对象中常用的关键字有final、static、const(1)final: 1,final不能修饰成员属性 2,final只能修饰类和方法 作用: 使用final修饰的类不能被子类继承 使用final修饰的方法不能被子类去覆盖 用来限制类不被继承,方法不能被覆盖就使用final(2、)st...
分类:Web程序   时间:2014-11-08 18:05:16    阅读次数:219
c++ http GET 和 POST的区别
最近写后端的时候,发现了一个问题平时,鉴权的时候都只是用到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
Cocos2d-X中的动作展示《二》
#include "ActionShow.h" static const char* _actionName[] = {  "CCMoveBy",  "CCMoveTo",  "CCRotateBy",  "CCRotateTo",  "CCScaleBy",  "CCScaleTo",  "CCSkewBy",  "CCSkewTo",  "CCJumpBy",...
分类:其他好文   时间:2014-11-01 21:50:34    阅读次数:241
c++回调java方法
还是直接上代码再来解释吧。。。。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
BZOJ1452 [JSOI2009]Count Solution
题意:自行脑补 做法:直接开权值那么多的二维树状数组暴力。 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 const volatile
在C语言中,关键字static有三个明显的作用:1). 在函数体,一个被声明为静态的变量在这一函数被调用过程中维持其值不变。2). 在模块内(但在函数体外),一个被声明为静态的变量可以被模块内所用函数访问,但不能被模块外其它函数访问。它是一个本地的全局变量。3). 在模块内,一个被声明为静态的函数只...
分类:其他好文   时间:2014-10-14 22:26:59    阅读次数:198
Effective C++ 条款 50:了解new和delete的合理替换时机
(一) 为什么有人想要替换operator new 和 operator delete呢?三个常见的理由: (1)用来检测运用上的错误。 (2)为了强化效果。 (3)为了收集使用上的统计数据。 (二) 下面是个快速发展得出的初阶段global operator new,促进并协助检测“overruns”或“underruns”。 static const int ...
分类:编程语言   时间:2014-09-29 13:37:21    阅读次数:237
static-const 类成员变量
static-const
分类:其他好文   时间:2014-09-20 20:34:59    阅读次数:138
208条   上一页 1 ... 16 17 18 19 20 21 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!