android 数据加载动画: 代码的方式:public class TreasureActivity extends Activity im...
分类:
其他好文 时间:
2015-05-20 02:08:42
阅读次数:
178
I'm glad to see that LeetCode has finally realized the importance of Trie.My C++ code can be further optimized..class TrieNode {public: // Initiali...
分类:
其他好文 时间:
2015-05-20 02:04:05
阅读次数:
147
1. JDBC连接数据库 2. ?创建一个以JDBC连接数据库的程序,包含7个步骤: 3. 1、加载JDBC驱动程序: 4. 在连接数据库之前,首先要加载想要连接的数据库的驱动到JVM(Java虚拟机), 5. 这通过java.lang.Class类的静...
分类:
数据库 时间:
2015-05-20 02:03:55
阅读次数:
299
Remove Duplicates from a Array import java.util.Arrays; import java.util.Scanner; import java.util.Scanner; public class Main { public static int remo...
分类:
其他好文 时间:
2015-05-20 01:59:33
阅读次数:
256
类(class),将一些具有共同特征的对象集中起来,提取出共同属性,形成类例如人:public class person { private String name = null; private int age = 0; public void sayAge() { System.ou...
分类:
其他好文 时间:
2015-05-20 00:28:50
阅读次数:
137
等待多个子线程结束后再执行主线程class MultiThread{ #region join test public void MultiThreadTest() { Thread[] ths = new Thread[2]; ths[0] = new Thread(Method...
分类:
编程语言 时间:
2015-05-20 00:14:55
阅读次数:
261
开始就想偏了,abcd那些字符根本不用构建,用hashmap一一对应做refhttp://blog.csdn.net/fightforyourdream/article/details/17311575public class Solution { public boolean isIsomo...
分类:
其他好文 时间:
2015-05-20 00:13:55
阅读次数:
160
class Class1 { static void Main(string[] args) { YuanGong yg = new YuanGong(); JingLi jl = new JingLi(); ...
Today while i started my Android ADT Eclipse Workspace i got the following error message,Problem Opening WizardThe selected wizard could not be starte...
分类:
移动开发 时间:
2015-05-20 00:11:01
阅读次数:
665
public class Triangle{ public static void main(String[] args){ printHollowRhombus(20);//size是最大间隔距离 } public static void printHollowRhomb...
分类:
其他好文 时间:
2015-05-20 00:04:13
阅读次数:
194