function stringToDate(fDate){ var fullDate =
fDate.split(" ")[0].split("-"); var fullTime = fDate.split(" ")[1].split(":");
return ...
分类:
其他好文 时间:
2014-05-09 16:20:34
阅读次数:
244
Map map = new
TreeMap();//TreeMap本身具有排序功能(默认按键升序排序)map.put(12, "hello");map.put(7,
"bravestarr");map.put(20, "world");System.out.println(map.toString(...
分类:
其他好文 时间:
2014-05-09 09:28:49
阅读次数:
282
unit Unit1;interfaceuses Winapi.Windows,
Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, V.....
方法2unit Unit1;interfaceuses Winapi.Windows,
Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, ...
分类:
移动开发 时间:
2014-05-09 08:45:39
阅读次数:
315
// 流程控制语句反汇编//Author:乾卦
Date:2014-5-8#includeint main(){ int a=1,b=10; if(a>b) { a=b; } a=2; b=11;
return 0;}//if语句的反汇编#i...
分类:
其他好文 时间:
2014-05-09 08:31:43
阅读次数:
373
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;using
System.Threading;using System.Run...
分类:
其他好文 时间:
2014-05-09 07:46:58
阅读次数:
370
这道题就是找规律啊!!!想想啊,11和10是可以连续的,那么10和11也是可以连续的。下面是AC代码:
1 /** 2 * The gray code is a binary numeral system where two successive values
differ in on...
分类:
其他好文 时间:
2014-05-09 07:38:17
阅读次数:
325
public class sample{public static void
main(String[]
args){//得到类的简写名称System.out.println(sample.class.getSimpleName());//得到对象的全路径System.out.println(sam...
分类:
其他好文 时间:
2014-05-09 07:17:59
阅读次数:
242
题目来源:BeginnersLabAssignmentsCodeExamplesAccessingPrivateDataMembersinC++.Thisisaflawinthelanguage/*
**Description:AccessingPrivateDataMembersinC++
**Date:2014-05-08
**Author:xyq
*/
#include<iostream>
#include<string>
usingnamespacestd;
clas..
分类:
编程语言 时间:
2014-05-09 06:58:48
阅读次数:
332
出错的原因是adb的端口被其他程序的进程占领了,所以要做的就是找到并kill该进程。步骤:、
1、在cmd中执行adb nodaemon server,查看adb的端口号是多少,一般情况下是5037(why?我也太懂)
2、再执行netstat -ano | findstr "5037" ,会看到如下类似的情形:
这里稍微解释一下,显示的从左到右的意思分别是,连接类型(TCP)、本地...
分类:
数据库 时间:
2014-05-09 06:11:12
阅读次数:
370