码迷,mamicode.com
首页 >  
搜索关键字:io    ( 172858个结果
HDU 4135
状态压缩其实刚开始没看懂为什么要用位运算后来看了别人的注释逐渐明白我也加上注释吧 1 #include 2 using namespace std; 3 4 long long Prime[50];//存放N的质因子 5 6 7 long long getNonCoPrime(long lo...
分类:其他好文   时间:2014-07-22 00:05:36    阅读次数:226
对象的继承
1、子类继承父类2、属性的继承,使用call的形式,改变this指向 对象的继承,使用for in的形式(拷贝继承) function extend(obj1,obj2) { for (var attr in obj2) { obj1[attr] = obj2[attr] ...
分类:其他好文   时间:2014-07-22 00:05:35    阅读次数:163
OperationSystemForm
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2014-07-22 00:05:35    阅读次数:164
什么是软件构件(component)?
搜狗百科:构件是面向软件体系架构的可复用软件模块。构件(component)是可复用的软件组成成份,可被用来构造其他软件。它可以是被封装的对象类、类树、一些功能模块、软件框架(framework)、软件构架(或体系结构Architectural)、文档、分析件、设计模式(Pattern)等。1995...
分类:其他好文   时间:2014-07-22 00:05:35    阅读次数:232
怎样查出SQLServer的性能瓶颈(转载)
怎样查出SQLServer的性能瓶颈--王成辉翻译整理,转贴请注明出自微软BI开拓者[url]www.windbi.com[/url]--原帖地址如果你曾经做了很长时间的DBA,那么你会了解到SQLServe的性能调优不是一个精密的科学。即使是,对于为最佳的性能找到最佳的配置也是很困难的。这是因为对...
分类:数据库   时间:2014-07-22 00:05:34    阅读次数:325
BaseJob
using System;using System.Collections.Generic;using System.Linq;using System.Text;using WindowsFormsApplication3.Model;using WindowsFormsApplication3....
分类:其他好文   时间:2014-07-22 00:04:36    阅读次数:303
memcached(windows)安装与配置
关键字:memcached(windows)安装与配置? 1. 下载windows版本的Memcached:http://code.jellycan.com/memcached/? 2.解压之后放在硬盘的目录下,如:D:\memcached . 然后在运行中输入cmd进入命令行,进入到Mem...
分类:Windows程序   时间:2014-07-21 23:29:43    阅读次数:471
Lua程序设计 深入函数01
在Lua中,函数是一种“第一类值”:表示在Lua中的函数与其他传统类型的值(例如:数字和字符串)是一样的,可以存储到变量(全局,局部均可)或table中,可以作为实参传递给其他函数,还可以作...
分类:其他好文   时间:2014-07-21 23:29:22    阅读次数:417
LeetCode_45permute [Permutations]
#pragma warning(disable:4996) #include <cstdio> #include <tchar.h> #include <Windows.h> #include <vector> using namespace std; /* submit time : 1 request : Given a collection of numbers, retu...
分类:其他好文   时间:2014-07-21 23:27:50    阅读次数:368
django meta 类的使用方法
通过一个内嵌类 "class Meta" 给你的 model 定义元数据, 类似下面这样: class Foo(models.Model):? ??? bar = models.CharField(maxlength=30) ??? class Meta:? ??????? # ... Model 元数据就是 ...
分类:其他好文   时间:2014-07-21 23:27:31    阅读次数:190
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!