看一个实际的例子: kd> unt!InitBootProcessor+0x3df:81b3a6de fec8 dec al81b3a6e0 f6d8 neg al81b3a6e2 bfe0df8f81 mov edi,offset nt!ExpBootEnvironmentIn...
分类:
其他好文 时间:
2015-02-02 17:55:34
阅读次数:
109
1、SimpleDateFormat.parse 把指定格式字符串转日期类型public static Calendar convToCalender(String str,String template){ SimpleDateFormat sdf; Date date...
分类:
编程语言 时间:
2015-02-02 17:56:05
阅读次数:
213
http://acm.hdu.edu.cn/showproblem.php?pid=1754照着hdu 1166 的模板稍加改动即可#include#include#include#includeusing namespace std;int sum[1000000];void push(int r...
分类:
其他好文 时间:
2015-02-02 17:54:43
阅读次数:
116
返回值为Boolean的话回在对象转json的时候丢失掉这个属性,因为json认的是小写。这个算jaxb的一个bug:https://java.net/jira/browse/JAXB-510解决办法只能改模型或者换jaxb的版本了,2.2版本以上没这个问题。
分类:
其他好文 时间:
2015-02-02 17:56:21
阅读次数:
147
1、gate descriptor 的 selector 给出目标代码的 code segment descriptor2、由目标代码 code segment descriptor 的 base address 得出代码的 base3、这个 base 加上 gate descriptor 的 of...
分类:
其他好文 时间:
2015-02-02 17:54:37
阅读次数:
155
1>在Action类中定义表单属性如,登陆表单login.jsp:User:Password:在Action中定义两个属性private String username;private String password;提供setter,getter方法。即可接收到表单传过来的参数. 这种接收参数的方...
分类:
其他好文 时间:
2015-02-02 17:56:24
阅读次数:
298
segment descriptors 构建保护模式下的最基本、最根本的执行环境。system descriptors 则构建保护模式下的核心组件:1、TSS descriptor 提供硬件级的进程切换机制 2、LDT descriptor 供进程使用多个 descriptor 3、Gate des...
分类:
其他好文 时间:
2015-02-02 17:55:23
阅读次数:
197
一、属性属性名称默认值说明autotrue设置为true当选择文件后就直接上传了,为false需要点击上传按钮才上传 。buttonClass”按钮样式buttonCursor‘hand’鼠标指针悬停在按钮上的样子buttonImagenull浏览按钮的图片的路径 。buttonText‘SELE....
分类:
其他好文 时间:
2015-02-02 17:53:44
阅读次数:
134
1010. 一元多项式求导 (25)时间限制400 ms内存限制65536 kB代码长度限制8000 B判题程序Standard设计函数求一元多项式的导数。输入格式:以指数递降方式输入多项式非零项系数和指数(绝对值均为不超过1000的整数)。数字间以空格分隔。输出格式:以与输入相同的格式输出导数多项...
分类:
其他好文 时间:
2015-02-02 17:52:38
阅读次数:
129
今天学习的时候发现SetWindowText设置编辑框的文本后光标位置不变,还是在开头,没到结尾,下面说个改变光标位置的方法SetWindowText后,用GetWindowTextLength或发送WM_GETTEXTLENGTH消息获取文本的长度(或先获得文本,然后再量长度),然后发送EM_SE...
分类:
其他好文 时间:
2015-02-02 17:54:12
阅读次数:
105
1 template 2 class SqQueue 3 { 4 protected: 5 int count; 6 int front,rear; 7 int maxSize; 8 ElemType *elem; 9 public: 10 ...
分类:
其他好文 时间:
2015-02-02 17:53:10
阅读次数:
184
一、相关key值介绍uploader:uploadify.swf文件的相对路径,该swf文件是一个带有文字BROWSE的按钮,点击后淡出打开文件对话框,默认值:uploadify.swf。 script:后台处理程序的相对路径 。默认值:uploadify.php scriptData:上传到后台的...
//时间长度$timelength= (strtotime($endtime)-strtotime($starttime))/60;var_dump($timelength."分钟");exit();
分类:
Web程序 时间:
2015-02-02 17:52:32
阅读次数:
172
转自:http://www.cppblog.com/custa/archive/2010/08/15/123491.html 今天看《C++ Primer》的成员访问操作符。看重载箭头操作符部分,刚开始有点迷茫,看了两遍总算有点理解,把心得写在这,与各位分享,如果有错误欢迎指正。箭头操作符(->)的...
分类:
编程语言 时间:
2015-02-02 17:54:31
阅读次数:
312
Zebra_Dialog has no dependencies other than jQuery 1.4.1+website:https://github.com/stefangabos/Zebra_Dialog/截止目前为止,该项目已经一年多没有人维护了。1.加载 ...
分类:
其他好文 时间:
2015-02-02 17:54:20
阅读次数:
293
一、 直接转移(far call及 far jmp)直接转移通过执行一条 call 或 jmp指令,在段内转移不需selector近跳转,段间转移通过selector(不带gate或 tss)远跳转,CPL不改变。权限检查的4个要素:★ CPL:当前运行级别(也就是CS.CPL)★ RPL:门符选择...
分类:
其他好文 时间:
2015-02-02 17:53:15
阅读次数:
212
如大家所知,常见的设计模式有23种之多,而这23种设计模式的核心都是根据设计原则来组织代码的,第一条原则:Identify the aspects of your application that vary and separate them from what stays the same. (找...
分类:
其他好文 时间:
2015-02-02 17:51:54
阅读次数:
130