After taking a look in the Java VM specification, I noticed that a lot more than just ASCII letters could be used to create an identifier.
Firstly, I was wondering if there were any extra symbols (apart from $, that are available for identifiers)
Do you think it would be possible, with the extended character set to encode additional information in an identifier, and a custom classloader, to implement true Java generics?
Of course, you would have to get around type erasure, but that could be possible with a custom parser?
So you could store generic names in a format like: $g$GenericList$_Java_lang_String$
I'm using GenericList here as I don't intend to modify the original implementation!
Load them in with the class loader, create a proper GenericList<String> version and send it back.
EDIT: I plan to use this for a language I'm building on the JVM. As it uses $'s and _'s as special characters, encoding information like that might just work!
EDIT 2: I suppose the more difficult thing to do would be generic methods? Does anyone have any information on how those would be implemented?
EDIT 3: Since classes can only be unloaded when the classloader disappears, would I be able to cache and remove resolved templates like it works in .Net, or would I do it like C++?