书籍的简称: CSPPSE: Computer System: a programmer's perspective Second Edition 进程(process)是操作系统对一个正在运行的程序的一种抽象。在一个系统上可以同时运行多个进程, 而每个进程都好像在独占的使用硬件。而并发运行...
分类:
编程语言 时间:
2014-09-21 17:34:20
阅读次数:
206
from sys import argvinput(argv)#python自带的IDLE直接执行不能提供命令行参数script,first,second,third=argvprint("The script is called:",script)print("Your first variabl...
分类:
其他好文 时间:
2014-09-20 14:40:48
阅读次数:
522
1.BOOL EqualRect( CONST RECT *lprc1, // first rectangle CONST RECT *lprc2 // second rectangle ); 说明:判断两个矩形结构是否相同。 非零表示成功,零表示失败。会设置GetLas...
分类:
其他好文 时间:
2014-09-19 23:43:36
阅读次数:
229
核心断言assertArrayEquals(expecteds, actuals)查看两个数组是否相等。assertEquals(expected, actual)查看两个对象是否相等。类似于字符串比较使用的equals()方法assertNotEquals(first, second)查看两个对象...
分类:
其他好文 时间:
2014-09-18 23:34:54
阅读次数:
264
There are two method to call .net DLL in SQLSERVER.The first one is to use the sql clr but it has a lot of limit.The second method is to use SSIS pack...
分类:
数据库 时间:
2014-09-18 14:44:13
阅读次数:
246
Core Java 2(最新版已经到了第七版,共2卷):基础
Thinking in Java(最新版已经到了第四版):提高
Effective Java:高级(强烈推荐)
The JavaTM Virtual Machine Specification, Second Edition(深入剖析JVM的运行机制):难
The Java Language Specification(...
分类:
编程语言 时间:
2014-09-17 15:19:32
阅读次数:
235
1. 修改元素值 second_node.set_value("miller");不对 必须second_node.first_child().set_value("miller");2. 小例子#include #include "pugixml.hpp"#include using names....
分类:
其他好文 时间:
2014-09-16 12:17:50
阅读次数:
311
SAS和SATA硬盘的区别如你所知,同ATA一样,SCSI是一种能够通过各自的数据信道连接多种设备的并行技术。和ATA一样,SCSI也向串行技术方向有所发展,这就是SAS(SerialAttachedSCSI)。简而言之,SAS是新一代的SCSI,其中包含了一些改进,比如更高的传输速度、更好的可升级性和可..
分类:
其他好文 时间:
2014-09-16 10:53:51
阅读次数:
216
//HelloWorld.h
#include "cocos2d.h"
#include "ui/CocosGUI.h"
#include "First.h"
#include "Second.h"
#include "Third.h"
USING_NS_CC;
using namespace ui;
enum Tag
{
FIRST = 1,
SECOND,
THIRD...
分类:
其他好文 时间:
2014-09-13 17:23:35
阅读次数:
294
TimeSpan的用法TimeSpan是用来表示一个时间段的实例,两个时间的差可以构成一个TimeSpan实例,现在就来简单介绍一下几点重要的用法:先来介绍几个方法TimeSpan.Minutes(其他时间比如天数,小时数,秒数都一样的情况下得到的分钟数的差),其他的Hours,Second一样Da...
分类:
其他好文 时间:
2014-09-13 10:33:44
阅读次数:
219