Skip to content

Instantly share code, notes, and snippets.

@ohjongsung
Last active March 27, 2018 04:38
Show Gist options
  • Save ohjongsung/3b10addcd87fd8fc5131c1f1f6786009 to your computer and use it in GitHub Desktop.
Save ohjongsung/3b10addcd87fd8fc5131c1f1f6786009 to your computer and use it in GitHub Desktop.
blog code snippets
public class Generics<T> {
private T t;
public void set(T t) {
this.t = t;
}
public T get() {
return t;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment