文档

Java™ 教程-Java Tutorials 中文版
Trail: Learning the Java Language
Lesson: Generics (Updated)
主页>学习 Java 语言>泛型(更新)

问题和练习的答案:泛型

  1. 编写一个泛型方法来计算集合中具有特定属性的元素数(例如,奇数整数,素数,回文数)。

    答案:
    public final class Algorithm {
        public static <T> int countIf(Collection<T> c, UnaryPredicate<T> p) {
    
            int count = 0;
            for (T elem : c)
                if (p.test(elem))
                    ++count;
            return count;
        }
    }
    
    泛型 UnaryPredicate 接口定义如下:
    public interface UnaryPredicate<T> {
        public boolean test(T obj);
    }
    
    例如,以下程序计算整数列表中奇数整数的数量:
    import java.util.*;
    
    class OddPredicate implements UnaryPredicate<Integer> {
        public boolean test(Integer i) { return i % 2 != 0; }
    }
    
    public class Test {
        public static void main(String[] args) {
            Collection<Integer> ci = Arrays.asList(1, 2, 3, 4);
            int count = Algorithm.countIf(ci, new OddPredicate());
            System.out.println("Number of odd integers = " + count);
        }
    }
    
    程序打印:
    Number of odd integers = 2
    
  2. 下面的类会编译吗?如果没有,为什么?
    public final class Algorithm {
        public static <T> T max(T x, T y) {
            return x > y ? x : y;
        }
    }
    
    答案:No. 大于(>)运算符仅适用于基本数字类型。

  3. 编写一个泛型方法来交换数组中两个不同元素的位置。

    答案:
    public final class Algorithm {
        public static <T> void swap(T[] a, int i, int j) {
            T temp = a[i];
            a[i] = a[j];
            a[j] = temp;
        }
    }
    
  4. 如果编译器在编译时擦除所有类型形参,为什么要使用泛型?

    答案:你应该使用泛型,因为:
    • Java 编译器在编译时对泛型代码强制执行更严格的类型检查。
    • 泛型支持编程类型作为参数。
    • 泛型使你能够实现泛型算法。


  5. 以下类在类型擦除后转换为什么?
    public class Pair<K, V> {
    
        public Pair(K key, V value) {
            this.key = key;
            this.value = value;
        }
    
        public K getKey(); { return key; }
        public V getValue(); { return value; }
    
        public void setKey(K key)     { this.key = key; }
        public void setValue(V value) { this.value = value; }
    
        private K key;
        private V value;
    }
    
    答案:
    public class Pair {
    
        public Pair(Object key, Object value) {
            this.key = key;
            this.value = value;
        }
    
        public Object getKey()   { return key; }
        public Object getValue() { return value; }
    
        public void setKey(Object key)     { this.key = key; }
        public void setValue(Object value) { this.value = value; }
    
        private Object key;
        private Object value;
    }
    
  6. 以下方法在类型擦除后转换为什么?
    public static <T extends Comparable<T>>
        int findFirstGreaterThan(T[] at, T elem) {
        // ...
    }
    
    答案:
    public static int findFirstGreaterThan(Comparable[] at, Comparable elem) {
        // ...
        }
    
  7. 以下方法会编译吗?如果没有,为什么?
    public static void print(List<? extends Number> list) {
        for (Number n : list)
            System.out.print(n + " ");
        System.out.println();
    }
    
    答案:对。

  8. 编写一个泛型方法来查找列表 [begin, end) 范围内的最大元素。

    答案:
    import java.util.*;
    
    public final class Algorithm {
        public static <T extends Object & Comparable<? super T>>
            T max(List<? extends T> list, int begin, int end) {
    
            T maxElem = list.get(begin);
    
            for (++begin; begin < end; ++begin)
                if (maxElem.compareTo(list.get(begin)) < 0)
                    maxElem = list.get(begin);
            return maxElem;
        }
    }
    
  9. 下面的类会编译吗?如果没有,为什么?
    public class Singleton<T> {
    
        public static T getInstance() {
            if (instance == null)
                instance = new Singleton<T>();
    
            return instance;
        }
    
        private static T instance = null;
    }
    
    答案:No. 你不能创建类型形参 T 的静态字段。

  10. 考虑到以下类:
    class Shape { /* ... */ }
    class Circle extends Shape { /* ... */ }
    class Rectangle extends Shape { /* ... */ }
    
    class Node<T> { /* ... */ }
    
    下面的代码会编译吗?如果没有,为什么?
    Node<Circle> nc = new Node<>();
    Node<Shape>  ns = nc;
    
    答案:No. 因为 Node<Circle> 不是 Node<Shape> 的子类型。

  11. 考虑这个类:
    class Node<T> implements Comparable<T> {
        public int compareTo(T obj) { /* ... */ }
        // ...
    }
    
    下面的代码会编译吗?如果没有,为什么?

    答案:对。
    Node<String> node = new Node<>();
    Comparable<String> comp = node;
    
  12. 如何调用以下方法来查找列表中的第一个整数,该整数是指定整数列表的相对素数?
    public static <T>
        int findFirst(List<T> list, int begin, int end, UnaryPredicate<T> p)
    
    注意,如果 gcd(a, b)= 1,则两个整数 ab 是相对素数,其中 gcd 是最大公约数的缩写。

    答案:
    import java.util.*;
    
    public final class Algorithm {
    
        public static <T>
            int findFirst(List<T> list, int begin, int end, UnaryPredicate<T> p) {
    
            for (; begin < end; ++begin)
                if (p.test(list.get(begin)))
                    return begin;
            return -1;
        }
    
        // x > 0 and y > 0
        public static int gcd(int x, int y) {
            for (int r; (r = x % y) != 0; x = y, y = r) { }
                return y;
        }
    }
    
    泛型 UnaryPredicate 接口定义如下:
    public interface UnaryPredicate<T> {
        public boolean test(T obj);
    }
    
    以下程序测试 findFirst 方法:
    import java.util.*;
    
    class RelativelyPrimePredicate implements UnaryPredicate<Integer> {
        public RelativelyPrimePredicate(Collection<Integer> c) {
            this.c = c;
        }
    
        public boolean test(Integer x) {
            for (Integer i : c)
                if (Algorithm.gcd(x, i) != 1)
                    return false;
    
            return c.size() > 0;
        }
    
        private Collection<Integer> c;
    }
    
    public class Test {
        public static void main(String[] args) throws Exception {
    
            List<Integer> li = Arrays.asList(3, 4, 6, 8, 11, 15, 28, 32);
            Collection<Integer> c = Arrays.asList(7, 18, 19, 25);
            UnaryPredicate<Integer> p = new RelativelyPrimePredicate(c);
    
            int i = ALgorithm.findFirst(li, 0, li.size(), p);
    
            if (i != -1) {
                System.out.print(li.get(i) + " is relatively prime to ");
                for (Integer k : c)
                    System.out.print(k + " ");
                System.out.println();
            }
        }
    }
    
    程序打印:
    11 is relatively prime to 7 18 19 25
    

Previous page: Questions and Exercises: Generics