Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. package Generics.Jar_Of_T;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. Jar<Integer> data = new Jar<>();
  6.  
  7.  
  8. data.add(1);
  9. System.out.println(data.remove());
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement