摘要:
using System.Drawing.Printing; //这是必备 for (int i = 0; i < PrinterSettings.InstalledPrinters.Count; i++) //获取当前打印机 { comboBox1.Items.Add(PrinterSettings.InstalledPri... 阅读全文
摘要:
Jnz 两数不等,跳 Je 两数相等,跳 je:(ZF)=1,则控制转移jne:(ZF)=0,则控制转移 test eax,eax eax做与运算,判断是否为0,。(1 and 1=1,1 and 0=0) 不为0,zf=0;为0,zf=1 cmp exa,ecx 相等 z=1;不等z=0 阅读全文