Generics - List of unknown


/ Published in: Java
Save to your folder(s)

Użycie jednoliterowego typu w definicji typu generycznego oznacza, że może być użyta tam dowolna klasa.


Copy this code and paste it in your HTML
  1. public interface List<E> {
  2.  
  3.  
  4.  
  5. public E get( );
  6.  
  7.  
  8.  
  9. public void add(E value);
  10.  
  11. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.