aspose file tools
The moose likes Beginning Java and the fly likes about the generic method Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "about the generic method " Watch "about the generic method " New topic
Author

about the generic method

VuTuan Tran
Greenhorn

Joined: Oct 21, 2010
Posts: 14
1.import java.util.*;
2.public class CreateAnArrayList {
3.public <T> void makeArrayList(T t) { // take an object of an unknown type and use a "T" to represent the type
6.List<T> list = new ArrayList<T>(); // now we can create the list using "T"
8.ist.add(t);
9.}
10.}

At line 3. what is the meaning of this public <T> void.I am confusing because unknown type T goes with void in this case.Usually, void is return nothing.
Please help me,thanks
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32599
    
    4
I presume you are familiar with this Java™ Tutorials section.

Your method creates a List, adds a T to it, then the List disappears when it goes out of scope, and might be garbage-collected. So it doesn't do anything useful.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: about the generic method
 
Similar Threads
Generics
Generic question with ?
Strange Collections Question from OCP Java SE 6 Programmer Practice Exams book by K & B
public static <T extends Comparable<? super T>> void sort(List<T> list)
Generics doubt