该文被密码保护。 Read More
http://www.intel.com/products/processor/manuals/Intel® 64 and IA-32 Architectures Software Developer's ManualVolume 1: Basic ArchitectureDescribes the architecture and programming environment of processors supporting IA-32 and Intel® 64 Architectures.DownloadIntel® 64 and IA-32 A Read More
#include <stdio.h>#include <stdlib.h>//在#define中,标准只定义了#和##两种操作。//#用来把参数转换成字符串,//##则用来连接两个前后两个参数,把它们变成一个字符串。#define parser(n) printf("token"#n"=%d\n",token##n)int main(){ int token9=10; parser(9); return 0;}//output://token9=10 Read More
复制构造函数, 赋值操作符 operator = ,析构函数 总称为复制控制 (Copy Control)e.g.:Code:#include <iostream>using namespace std;class T{public: T(){ cout<<"T constructor."<<endl; } T(const T& tobj){ cout<<" T copy construct from T:"<<&tobj<<endl; t=tobj.t; } //若 Read More
Memcached 是一个高性能的分布式内存对象缓存系统,用于动态Web应用以减轻数据库负载。它通过在内存中缓存数据和对象来减少读取数据库的次数,从而提供动态、数据库驱动网站的速度。Memcached基于一个存储键/值对的hashmap。其守护进程(daemon )是用C写的,但是客户端可以用任何语言来编写,并通过memcached协议与守护进程通信。但是它并不提供冗余(例如,复制其hashmap条目);当某个服务器S停止运行或崩溃了,所有存放在S上的键/值对都将丢失。Memcached官方:http://danga.com/memcached/关于Memcached的介绍请参考:Memca. Read More
官网:http://www.gnu.org/software/gdb/documentation/gdbhelp xx &var_name:输出变量Examine memory: x/FMT ADDRESS.ADDRESS is an expression for the memory address to examine.FMT is a repeat count followed by a format letter and a size letter.Format letters are o(octal), x(hex), d(decimal), u(unsigned decim Read More
该文被密码保护。 Read More
Form授权OverView: http://msdn.microsoft.com/en-us/library/9wff0kyh.aspxhttp://msdn.microsoft.com/en-us/library/xdt4thhyHow to: Implement Simple Forms Authentication<system.web> <authentication mode="Forms"> <forms loginUrl="logon.aspx" name=".ASPXFORMSAUTH" Read More
微机系统有七种基本的寻址方式:立即寻址方式、寄存器寻址方式、直接寻址方式、寄存器间接寻址方式、寄存器相对寻址方式、基址加变址寻址方式、相对基址加变址寻址方式等。其中,后五种寻址方式是确定内存单元有效地址的五种不同的计算方法,用它们可方便地实现对数组元素的访问。立即数寻址方式: MOV AH, 80H 寄存器寻址方式: MOV AX, BX 直接寻址方式: MOV BX, [1234H]寄存器间接寻址方式: MOV BX,[DI] 若有效地址用SI、DI和BX等之一来指定,则其缺省的段寄存器为DS; 若有效地址用BP来指定,则其缺省的段寄存器为SS(即:堆栈段)。寄存器 Read More