Java代码 publicclassTest{publicstaticvoidmain(Stringargs[]){Stringstr="@ShangHaiHongQiaoFeiJiChang";booleanrs=false;for(inti=0;i.*|/匹配首尾空格的正则表达式:(^s*)|(...
分类:
编程语言 时间:
2014-08-04 13:55:17
阅读次数:
311
最近在使用Listbox开发程序的时候, 遇到MouseWheel event 异常。设置如下:1. DrawModel:ownerDrawVariable.2. InternalHeight:False.3. ScrollAswalysVisible:True.4. Overwrite DrawI...
一、new Boolean(value); //构造函数 Boolean(value); //转换函数 0,NaN,null,"",undefined都会转成false,其他都会返回true,包括字符串"false" var b = new Boolean(1); //n...
分类:
编程语言 时间:
2014-08-04 10:55:07
阅读次数:
239
js 中跳出循环用break,结束本次循环用continue,jquery 中each循环 跳出用return true,或者return false,下面的代码的本意是输入组名查找组id,如果没有找到返回'nofind',在实际执行过程中,当找到组id的时候,执行了 return n.PLM_ID...
分类:
Web程序 时间:
2014-08-04 10:28:46
阅读次数:
221
Python条件语句Python条件语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块。Python编程中if语句用于控制程序的执行,基本形式为:if判断条件:
执行语句……
else:
执行语句……其中"判断条件"成立时(非零),则执行后面的语句,而执行内容可以多行..
分类:
编程语言 时间:
2014-08-03 23:32:27
阅读次数:
294
#include #include "stdafx.h"#include #include #include int kill(DWORD pid){ HANDLE hprocess = OpenProcess(PROCESS_ALL_ACCESS,FALSE,pid); if(hpro...
分类:
编程语言 时间:
2014-08-03 20:34:25
阅读次数:
180
最近在实习,看着公司有些脚本是perl写,久闻perl处理文本还是很强大的,趁着周末扫了一般这本书~记录下了~
undef 默认未定义字符,perl里面没有NULL,defined($x)函数:如果参数为undef返回false
qw(cs phy geo) 类似于 (“cs”, "phy", "geo")列表可以赋值给数组@array
数组操作符:pop,push操作末尾,sh...
分类:
其他好文 时间:
2014-08-03 18:07:25
阅读次数:
228
bool用于判断布尔值的结果是True还是False >>> bool("a") True >>> bool(3) True >>> bool("") False >>> bool(0) False Python中的elif类似于Java中的elseif >>> number...
分类:
编程语言 时间:
2014-08-03 17:41:25
阅读次数:
380
1 查看查询计划 db.user.find({"username":"xxx"}) .explain() db.doc.find({"es_y":"2014"}).explain() { ?"cursor" : "BasicCursor", ?"isMultiKey" : false, ?"n" : 0, ?"nscannedObjects" : 1, ?"nscann...
分类:
数据库 时间:
2014-08-03 12:56:45
阅读次数:
268
1:去除 GridView 头上的 "Drag a column header here to group by that column"--> 点击 Run Designer -> 找到:OptionView ->将 ShowGroupPanel : 设置为 false ;2:如何 显示出 Gri...
分类:
其他好文 时间:
2014-08-02 23:24:04
阅读次数:
350