Hi Java folks,
Can anybody elucidate about use of "<?>" in certain java codes.
E.G.
public static Class<?> getProxyClass(ClassLoader loader,
Class<?>... interfaces)
Here I am totally blank as What exactly is mean by "<?>" postfix after Class keyword.
Regards,
Shiv
-
Can anybody elucidate about significance of "<?>" in java. (2 messages)
- Posted by: Shivnarayan Varma
- Posted on: August 03 2005 03:23 EDT
Threaded Messages (2)
- Can anybody elucidate about significance of "<?>" in java. by Ray Baco on August 03 2005 10:26 EDT
- Can anybody elucidate about significance of "<?>" in java. by Shivnarayan Varma on November 16 2005 08:37 EST
-
Can anybody elucidate about significance of "<?>" in java.[ Go to top ]
- Posted by: Ray Baco
- Posted on: August 03 2005 10:26 EDT
- in response to Shivnarayan Varma
This is new (Java 1.5) syntax for Generic types - similar to templates in C++. You can find out the details by looking for a Java 1.5 features tutorial on the web. The specific Java 1.5 feature you want to look at is Generics. -
Can anybody elucidate about significance of "<?>" in java.[ Go to top ]
- Posted by: Shivnarayan Varma
- Posted on: November 16 2005 08:37 EST
- in response to Ray Baco
Thanks Ray.