码迷,mamicode.com
首页 >  
搜索关键字:static、const    ( 208个结果
QString的不常见用法
QString str("Hello");QString str = "Hello";static const QChar data[4] = { 0x0055, 0x006e, 0x10e3, 0x03a3 };QString str(data, 4);QString str;str.resize...
分类:其他好文   时间:2015-07-03 00:10:59    阅读次数:121
bzoj2432
被虐的体无完肤,直接给题解地址吧:http://vfleaking.blog.163.com/blog/static/174807634201341721051604/ 1 const maxk=1000010; 2 type matrix=array[1..3,1..3] of int64; .....
分类:其他好文   时间:2015-06-30 16:16:08    阅读次数:125
高精度模板
高精度模板,留个备份: 1 #include 2 #include 3 4 struct BigNumber 5 { 6 static const long long BASE = 1000000000; 7 static const int BASEDIGS =...
分类:其他好文   时间:2015-06-30 14:22:13    阅读次数:118
UVa1152 - 4 Values whose Sum is 0(hash)
hash结构体 struct Hash_map { static const int mask=0x7fffff; int p[8388608],q[8388608]; void clear(){ for(int i=0;i<=mask;++i) q[i]=0; } int & operator [...
分类:其他好文   时间:2015-06-21 09:28:10    阅读次数:130
UVa401 Palindromes
#include #include char mirror(char c){ static const char m[] = "A 3 HIL JM O 2TUVWXY51SE Z 8 "; if ('A' <= c && c <= 'Z') return m[c-'A']; else retu.....
分类:其他好文   时间:2015-06-20 14:18:19    阅读次数:111
base64实现
C语言版本:#include /* aaaack but it's fast and const should make it shared text page. */static const unsigned char pr2six[256] ={ /* ASCII table */ ...
分类:其他好文   时间:2015-06-11 00:03:31    阅读次数:255
还原拼图, 把妹收小弟神器, 让你逼格提高好几个档次.
这里给链接: 自动拼图 http://pan.baidu.com/s/1sjoNv7f其实呢, 也没多少技术含量. 当然, 我比较谦虚.源码 1 #include "Game.h" 2 3 #include 4 5 static const auto PUZZLE_COUNT = 1...
分类:其他好文   时间:2015-06-08 19:29:42    阅读次数:136
C++模板中的静态
#include #include using namespace std; template class xiaok{ public: static void han(){cout<<"xiao"<<endl;} static void han1(); static int i; // static const int ii=0; //vc.6报错 }; int xiao...
分类:编程语言   时间:2015-06-07 11:11:36    阅读次数:184
Effective Objective-C手记
类型常量:使用类型常量代替#define1.普通常量//.m#import "xxxxx.h"static const NSTimerInterval kAnimationDuration = 0.3; //放在.m文件的#import之后即可,常量名称以k开头。@implemenation xxx...
分类:其他好文   时间:2015-06-04 00:41:36    阅读次数:162
#define static const 用法 (转)
1、Define用法: define主要是用于宏常量定义的,使程序看起来更简洁明了,方便代码维护,#define定义的实质只是一个常数的名字,没有具体数据类型的,没有分配内存空间。在编译是会被编译器替换为该常数。每次使用该宏定义,就要进行编译并分配空间,若一个程序中多次使用define定义的数据,....
分类:其他好文   时间:2015-06-01 22:18:08    阅读次数:105
208条   上一页 1 ... 10 11 12 13 14 ... 21 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!