Very simple question. I've been looking at JSpot documentation. http://jspot.googlecode.com/svn/trunk/javadoc/index.html What does T stand for? When it says it wants a list of type T I don't understand what T is?
Asked
Active
Viewed 655 times
0
-
Google java generics... – brso05 Feb 16 '16 at 14:36
-
1I suggest you learn the basics of the Java language. Generics were added more than ten years ago so there is plenty of documentation and tutorials on them. – Peter Lawrey Feb 16 '16 at 14:42
1 Answers
1
T is a Generic data type, i.e a generic class or interface that is parameterized over types ....take a look at this

ΦXocę 웃 Пepeúpa ツ
- 47,427
- 17
- 69
- 97
-
3This is more a comment than an answer. It doesn't explain what a "generic type" is for example. – Tunaki Feb 16 '16 at 14:37
-
when saying "take a look at this", it can help if you add something the this refers to – Stultuske Feb 16 '16 at 14:37
-
True but it answers my question in a timely manner. I wasn't sure if it what it stood for. Thank you for your help all. – Gideon Sassoon Feb 16 '16 at 14:52