string tempSFZH = ""; foreach (DataRow rs in
ds.Tables[0].Rows) { tempSFZH = rs[ht["身份证号码"].ToString()].ToStri...
分类:
其他好文 时间:
2014-05-23 11:47:29
阅读次数:
204
参考资料《大话设计模式》Mediator(中介者)模式:使各个对象不需要显式的相互调用,从而使其耦合松散。using System;using
System.Collections.Generic;using System.Linq;using System.Text;namespace
ds_me...
分类:
其他好文 时间:
2014-05-23 10:13:17
阅读次数:
331
ibm存储适用,其他存储有类似参数。 1、调整全局cache参数1、1 start and stop cache flush:这两个参数影响控制器处理cache区域的操作,在这中情况下是按照先进先出的原则往磁盘上写数据。这只对打开了写cache的情况下适用。 在一般的情况下,在决大多数时候start的值大于stop的值。但是也有少量的情况下start等于stop的值。如start=stop=80%...
分类:
其他好文 时间:
2014-05-21 13:27:28
阅读次数:
218
SSTACK SEGMENT STACK
DW 32 DUP(?)
SSTACK ENDS
CODE SEGMENT
ASSUME CS:CODE
START: PUSH DS
MOV AX, 0000H
MOV DS, AX
MOV AX, OFFSET MIR7
MOV SI, 003CH ;0FH
MOV [SI], AX
MOV AX, CS
MO...
分类:
其他好文 时间:
2014-05-21 08:09:28
阅读次数:
252
想知道他们怎么用,就必须了解他们的用途,他们和其他寄存器如何合作,寄存器寻址和存储器寻址如何完成?单说这几个段寄存器,不涉及其他寄存器,是不能真正了解掌握他们的。学习需要循序渐进,“莫在浮沙筑高台”
---------------
寄存器是中央处理器内的组成部份。寄存器是有限存贮容量的高速存贮部件,它们可用来暂存指令、数据和位址。在中央处理器的控制部件中,包含的寄存器有指令寄存器(IR)和程序...
分类:
编程语言 时间:
2014-05-21 06:55:31
阅读次数:
267
assumecs:code,ds:datadatasegment msgdb"helloworld"dataendscodesegment start: movax,data movds,ax movbx,0b800h moves,bx movcx,11 movsi,0 movbx,0 movah,01000010bs:moval,ds:[si]moves:[bx],almoves:[bx+1],ahincsiaddbx,2loopsmovax,4c00hint21hcodeendsendstart运..
分类:
编程语言 时间:
2014-05-20 20:36:44
阅读次数:
375
参考资料《大话设计模式》职责链模式:using System;using
System.Collections.Generic;using System.Linq;using System.Text;namespace
ds_chainofresponsibility{ class Progr...
分类:
其他好文 时间:
2014-05-20 12:52:03
阅读次数:
328
启动cacao及实例:[root@rusky bin]# cd
/home/ldap/iamldap/dsee6/cacao_2/cacao/bin[root@rusky bin]# ./cacaoadm
start[root@rusky bin]# cd /home/ldap/iamldap/ds...
分类:
其他好文 时间:
2014-05-19 23:41:33
阅读次数:
411
DataSet ds = new DataSet();
ds.ReadXml(AppDomain.CurrentDomain.BaseDirectory + "XML\\Mail.xml"); if
(ds.Tables.Count > ...
分类:
Web程序 时间:
2014-05-18 02:19:31
阅读次数:
408
书中的42页,监测点4.2第一题,代码如下:
mov ax, 0xb800
mov ds, ax
mov [0x00], 'a'
mov [0x02], 's'
mov [0x04], 'm'
jmp $
编译会报错
提示没有指定操作数长度,修改后为
mov ax, 0xb800
mov ds, ax
mov byte [0x00], 'a'
mov byte [0x02], ...
分类:
编程语言 时间:
2014-05-15 11:27:09
阅读次数:
380