I just found out in Java you can declare a field \'static transient\' - the compiler doesn\'t complain. This doesn\'t seem to be useful in any way since static fields are not se
Nope - you said it yourself, static fields aren't serialized.
Kinda weird that the compiler lets you do that though.