码迷,mamicode.com
首页 >  
搜索关键字:ca 认证中心    ( 4218个结果
29python运算符重载
__init__ 构造函数__del__ 析构函数__add____sub____or____repr__,__str____call____getattr____setattr____delattr____getattribute____getitem____setitem____delitem_...
分类:编程语言   时间:2014-08-12 13:10:34    阅读次数:247
Convert JS object to JSON string
Modern browsers (IE8, FF3, Chrome etc.) have native JSON support built in (Same API as with JSON2).So as long you're not dealing with IE6/7 you can do...
分类:Web程序   时间:2014-08-12 13:08:24    阅读次数:217
利用DEBUG在界面捕获异常及展示
try { } catch (Exception ex) { Debug.WriteLine(ex.Message); MessageBox.Show(ex.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); }
分类:其他好文   时间:2014-08-12 10:17:53    阅读次数:256
题目555-相反输出-nyoj20140812
#includeint main(){int a[10];while(scanf("%d%d%d%d%d%d%d%d%d%d",&a[0],&a[1],&a[2],&a[3],&a[4],&a[5],&a[6],&a[7],&a[8],&a[9])==10){printf("%d %d %d %d ...
分类:其他好文   时间:2014-08-12 10:13:33    阅读次数:183
关于DRM的理解
DRM:Dynamic Resource management,或者称Dynamic Resource Master,使用后者更易帮助初学者理解。此概念是在10g引进的。oracle RAC 的每个实例都有自己的SGA,存储了最近使用的缓存。RAC使用DRM的机制来确保数据的一致性,并通过使用ca....
分类:其他好文   时间:2014-08-12 10:09:43    阅读次数:193
题目556-最大公约数-nyoj20140812
#include int main(){ int m,n; while(scanf("%d,%d",&m,&n)!=EOF) { int i; for(i=m;i>0;i--) if(m%i==0&&n%i==0) break; printf("%d\n",i); } return 0; }
分类:其他好文   时间:2014-08-12 10:07:33    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!