namespace MathCal { typedef long long LL; static const LL mod = 1e9 + 7; static const int N = 1e5 + 5; LL fac[N], inv[N]; inline LL pow(LL x, LL exp) ... ...
分类:
其他好文 时间:
2017-11-11 14:09:37
阅读次数:
145
drivers/input/input.c: input_init > err = register_chrdev(INPUT_MAJOR, "input", &input_fops); static const struct file_operations input_fops = { .owne ...
分类:
其他好文 时间:
2017-10-12 00:52:57
阅读次数:
205
好多人都会遇到瀑布流的问题,有些瀑布流的高度是不一样的,有些是每个cell的高度是一样的,我这里的写的只要改动一个地方就可以了 首先自定义继承 UICollectionViewLayout的类然后再.m文件中布局属性 /** 默认的列数 */ static const NSInteger XMGDe ...
分类:
移动开发 时间:
2017-09-11 00:59:26
阅读次数:
229
PHP 面向对象中常见关键字的使用: 1、final :final关键字可以加在类或者类中方法之前,但是不能使用final标识成员属性。 作用: 使用final标识的类,不能被继承。 在类中使用final标识的成员方法,在子类中不能覆盖。 总结:final表示为最终的意思,所以使用final关键字的 ...
分类:
Web程序 时间:
2017-07-24 00:21:35
阅读次数:
182
1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 struct BigInteger 8 { 9 static const int BASE=100000000; 10 static const int WIDTH=8; 11... ...
分类:
其他好文 时间:
2017-07-22 22:35:09
阅读次数:
235
1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 struct BigInteger 8 { 9 static const int BASE=1000000000; 10 static const int WIDTH=8; 1... ...
分类:
其他好文 时间:
2017-07-22 15:29:42
阅读次数:
204
版权声明:本文为博主原创文章,未经博主允许不得转载。 版权声明:本文为博主原创文章,未经博主允许不得转载。 用win32 API监听U盘插拔并取得其盘符 1.使用RegisterDeviceNotification()函数注册 [cpp] view plain copy static const G ...
#include #include #include #include using namespace std; struct BigInteger { static const int BASE=100000000; static const int WIDTH=8; vector s; BigI... ...
分类:
其他好文 时间:
2017-06-29 22:09:13
阅读次数:
153
//获取一个32位随机数 static const char _randomStr[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; //!@#$%^*() //1、获取一个随机整数范围在:[0,100)包括0... ...
分类:
移动开发 时间:
2017-06-27 14:49:00
阅读次数:
165
本篇文章主要分享一下关于php类中的$this,static,final,const,self这几个关键字使用方法 $this $this表示当前实例,在类的内部方法访问未声明为const及static的属性时,使用$this->value='phpernote';的形式。常见用法如:$this-> ...
分类:
Web程序 时间:
2017-06-14 13:06:22
阅读次数:
211