摘要: 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 ... 阅读全文
posted @ 2013-07-21 16:27 —八戒— 阅读(3985) 评论(0) 推荐(0) 编辑
摘要: 一、 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 ... 阅读全文
posted @ 2013-07-21 16:22 —八戒— 阅读(440) 评论(0) 推荐(0) 编辑