We Recommend

Java How to Program Java How to Program
Takes a new tools-based approach to Web application development that uses Netbeans 5.5 and Java Studio Creator 2 to create and consume Web Services. Features new AJAX-enabled, Web applications built with JavaServer Faces (JSF), Java Studio Creator 2 and the Java Blueprints AJAX Components. Includes new topics throughout, such as JDBC 4, SwingWorker for multithreaded GUIs, GroupLayout, Java Desktop Integration Components (JDIC), and much more.


Posted By

cetnar on 07/15/06


Tagged

generics tiger wildcard


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

xaviaracil


Generics - Using Type Wildcards


Published in: Java 


Uwaga: taki typ generyczny jest niestety readonly.

  1. public void printList(List<?> list, PrintStream out) throws IOException {
  2.  
  3. for (Iterator<?> i = list.iterator( ); i.hasNext( ); ) {
  4.  
  5. out.println(i.next( ).toString( ));
  6.  
  7. }
  8.  
  9. }

Report this snippet 

You need to login to post a comment.