CTRL + R Build and runOPTION + CMD + O 查找工程内的文件或方法或字段CMD + 0 查找工程内的类文件CMD + P Show parameters for selected methodOPTION + CMD + L Reformat codeCMD + N...
分类:
移动开发 时间:
2015-12-18 11:49:33
阅读次数:
267
1、oracle区分大小写2、格式敏感3、默认日期格式:DD-MON-RR更改:select * from v$nls_parameters ——alert session set nls_date_format='yyyy-mm-dd'(session 表示当前回话范围)4、赋值:=5、selec...
分类:
数据库 时间:
2015-12-15 18:15:43
阅读次数:
183
@BeforeClass@Before@Test@Ignore@After@AfterClass@RunWith@Parameters总结:一个完整的“JUint单元测试用例”的执行顺序是:@BeforeClass–>@Before–>@Test–>@After–>@AfterClass
分类:
其他好文 时间:
2015-12-09 07:16:13
阅读次数:
131
《Python3 程序开发指南》Lambda函数,是一个匿名函数,创建语法:lambda parameters:expressparameters:可选,如果提供,通常是逗号分隔的变量表达式形式,即位置参数。expression:不能包含分支或循环(但允许条件表达式),也不能包含return(或yi...
分类:
编程语言 时间:
2015-12-07 12:18:15
阅读次数:
145
不多说,先看源码 1 /** 2 * Creates a new {@code ThreadPoolExecutor} with the given initial 3 * parameters. 4 * 5 * @param corePoolSize th...
分类:
其他好文 时间:
2015-12-07 02:12:21
阅读次数:
386
在本地连接属性中取消IPv6后,还应修改如***册表项:找到HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\,新建DWORD32位DisabledComponents键,值为十六进制ffffffff,然后重启。
MLE & MAP : data / model parameterMLE: (1) keep the data fixed(i.e., it has been observed) and allow the parameters to vary (2) the likelihood func...
分类:
其他好文 时间:
2015-12-02 17:42:15
阅读次数:
124
Starting new blog series – explanation of various configuration parameters. I will of course follow no schedule or order – if I'd had to – it would...
分类:
其他好文 时间:
2015-12-01 01:28:18
阅读次数:
155
Android提供了Camera来控制拍照,步骤如下:(1)调用Camera的open()方法打开相机。(2)调用Camera的getParameters()获取拍照参数,该方法返回一个Cmera.Parameters对象。(3)调用Camera.Parameters对象对照相的参数进行设置。(4)...
分类:
移动开发 时间:
2015-11-29 23:13:21
阅读次数:
496
在SQL Server 中插入一条数据使用Insert语句,但是如果想要批量插入一堆数据的话,循环使用Insert不仅效率低,而且会导致SQL一系统性能问题。下面介绍SQL Server支持的两种批量数据插入方法:Bulk和表值参数(Table-Valued Parameters)。运行下面的脚本....
分类:
数据库 时间:
2015-11-28 22:59:09
阅读次数:
288