07 2013 档案
摘要:1、SqlHelper.java 1 import java.lang.reflect.*; 2 import java.sql.*; 3 import java.util.*; 4 5 public class SqlHelper { 6 // SQL Server 7 ...
阅读全文
摘要:一、 Comparable 1 public class Person implements Comparable{ 2 public int Age; 3 public String Name; 4 public int compareTo(Person o) { 5 // TODO Auto-generated method stub 6 return this.Age-o.Age; 7 } 8 } 9 10 public static void main(String[] args) {11 // TODO ...
阅读全文