I don't really understand the point of generics. What do they do, how do you use them?
From what I can tell, all they do is check return types at compile times instead of run times to avoid running the program before an error is thrown. Is this all they do?
for example:
public <Integer> int test() {
return 'c'; //will throw error at compile instead of runtime
}
I was reading something about how generics are arbitrary, and you should only use capitol letters? This is kind of confusing.
Sorry if this is vague, as you can tell I'm pretty confused. I'll try to add more if you don't know what I'm asking.
Thanks