public static String getTimeForShowing(String strTime) { System.out.println(strTime); //年 int year = Integer.parseInt(st...
分类:
其他好文 时间:
2014-08-08 17:40:06
阅读次数:
181
目前没什么想说的 ?先刨个坑 ?留下一段代码 以后或许用得上吧? SimpleDateFormat?format?=?new?SimpleDateFormat(PATTERN);
System.out.println(format.format(new?Date()));
@SuppressWarnings("res...
分类:
移动开发 时间:
2014-08-08 16:39:56
阅读次数:
257
问题描述:
原先SGA 4G,PGA 2G。
alter system set sga_max_size=30G scope=spfile;
alter system set sga_target=30G scope=spfile;
之后,
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE in...
分类:
其他好文 时间:
2014-08-08 16:13:26
阅读次数:
266
POJ 2723 Get Luffy Out(图论-2SAT,搜索-二分)
题目大意:
有n对钥匙,m个门,每对钥匙用了其中1个,另一个就会消失,每个门上有m个锁,用特定的钥匙打开其中1个锁,另一个锁会消失,连续的打开门,问你之多能打开几扇门?
解题思路:
二分枚举打开的门数,再用2SAT判断是否矛盾。‘
2SAT构边说明:两边分别钥匙,为选与不选
(1)AB钥匙在一串,那么选了A钥匙,就不能选B钥匙;选了B钥匙,就不能选A钥匙
(2)AB是同一扇门的锁,那么不开A就要开B,不开B就要开A。...
分类:
其他好文 时间:
2014-08-08 16:07:06
阅读次数:
294
http://blog.csdn.net/kyle8525_nsn/article/details/8512233如果你的jdk是jkd1.6.0_21及之后的版本可能在启动Eclipse时遇到Out of Memory的问题,解决方法是在eclipse.ini文件中添加一行:-XX:MaxPerm...
分类:
系统相关 时间:
2014-08-08 15:29:26
阅读次数:
195
foreach (DataColumn column in dt.Columns) { DateTime t; if (DateTime.TryParse(column.ColumnName, out t))//判断...
分类:
其他好文 时间:
2014-08-08 15:23:06
阅读次数:
179
Description
Background
Jim is a brave explorer. One day, he set out for his next destination, a mysterious hill. When he arrived at the foot of the hill, he was told that there were a bunch of mons...
分类:
其他好文 时间:
2014-08-08 12:52:35
阅读次数:
314
1、IsWow64Process确定指定进程是否运行在64位操作系统的32环境(Wow64)下。语法BOOL WINAPI IsWow64Process( __in HANDLE hProcess, __out PBOOL Wow64Process );参数 hProcess 进程句柄...
分类:
其他好文 时间:
2014-08-08 12:08:15
阅读次数:
281
题目: 贪吃的老鼠(cheese.c/cpp/pas/in/out) 时限:每个测试点10秒[问题描述] 奶酪店里最近出现了m只老鼠!它们的目标就是把生产出来的所有奶酪都吃掉。奶酪店中一天会生产n块奶酪,其中第i块的大小为pi,会在第ri秒...
分类:
其他好文 时间:
2014-08-07 22:49:45
阅读次数:
462
import java.util.Scanner;public class Triangle { public static void main(String[] args){ double d; System.out.println("请输入三角形的三条边的长度!...
分类:
其他好文 时间:
2014-08-07 21:37:50
阅读次数:
268