RTTI:Run Time Type Identification
泛型的概念:适合许多许多的类型。核心概念:告诉编译器想使用什么类型,然后编译器帮你处理一切细节。
/**
* 泛型示例:
*/
public class ClassName<T> {}
一个元组类库
//: net/mindview/util/TwoTuple.java
package net.mindview.util;
public class TwoTuple<A, B> {
public final A first;
// final 声明可以保护public元素,阻止实例对象对其的的访问,编译错误。
public final B second;
public TwoTuple(A a, B b) {
first = a, second = b;
}
public String toString() {
return "(" + first + ", " + second + ")";
}
}///:~
/**
* 利用继承机制实现昌都更长的元组
*/
//: net/mindview/util/TwoTuple.java
package net.mindview.util;
public class FourTuple<A, B, C, D> extends TwoTuple {
public final C third;
public final D fourth;
public FourTuple(A a, B b, C c, D d) {
super(a, b);
third = c, fourth = d;
}
public String toString() {
StringBuilder sb = new StringBuilder(super.toString());
return sb.delete(sb.length - 2, sb.length -1).toString() +
", " + third + ", " + fourth + ")";
}
}
一个堆栈类
/**
* 不使用LinkedList实现栈内部的链式存储机制
*/
//: generics/LinkedStack.java
// A stack implemented with an internal linked structure.
public class LinkedStack<T> {
private static class Node<U> { // 泛型内部类
U item;
Node<U> next;
Node() {
item = null, next = null;
}
Node(U item, Node<U> next) {
this.item = item;
this.next = next;
}
boolean end() {
return item == null && next == null;
}
}
private Node<T> top = new Node<T>(); // End sentinel
public void push(T item) {
// 每调用一次push(),都会创建一个Node<T>对象,并将其链接到前一个Node<T>对象。
top = new Node<T>(item, top);
}
public T pop() {
T result = top.item;
if(!top.end()) {
// 丢弃当前的Node<T>对象,并将top指向下一个Node<T>。
top = top.next;
}
return result;
}
public static void main(String[] args) {
LinkedStack<String> lss = new LinkedStack<String>();
for(String s : "Phasers on stun!".split(" ")) {
lss.push(s);
}
String s;
while(null != (s = lss.pop())) {
System.out.println(s);
}
}
}/* Output:
stun!
on
Phasers
*///:~
RandomList
//: generics/RandomList.java
import java.util.*;
public class RandomList<T> {
private ArrayList<T> storage = new ArrayList<T>();
private Random rand = new Random(47);
public void add(T item) {
storage.add(item);
}
public T select() {
return storage.get(rand.nextInt(storage.size()));
}
public static void main(String[] args) {
RandomList<String> rs = new RandomList<String>();
for(String s: ("The quick brown fox jumped over " +
"the lazy brown dog").split(" ")) {
rs.add(s);
}
for(int i = 0; i < 11; i++) {
System.out.println(rs.select() + " ");
}
}
}