Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: make code compile

...

Code Block
bgColor#ccccFF
public class ExampleExample<T> {
  private T a;   // Purpose of a...
  private T b;   // Purpose of b...
  private T[] c; // Purpose of c[]...
  private T d;   // Purpose of d...

  public Example(T in){
    a = in;
    b = in;
    c = (T[]) new Object[10];
    d = in;
  }
}

...