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 serialized, as we all know.

But I wonder, is there actually a case where 'static transient' fields are useful?

link|improve this question

80% accept rate
12  
static transient fields can be detected via reflection. You can write your own serializer to do XML, JSon, etc and you can give this a special meaning if you intend to save static variables as well. – Peter Lawrey Dec 30 '10 at 19:38
+1 for getting a use case. My understanding was it's redundant. – Nishant Dec 30 '10 at 19:47
BTW: You can have other modifier combinations which don't make as much sense like public constructor on an abstract class or a protected constructor/method of a final class. – Peter Lawrey Dec 30 '10 at 20:02
1  
With reflection any modifier combination can make sense (more or less) ;-) – python dude Dec 30 '10 at 20:10
1  
@ Peter Lawrey: I suggest you repost your above response as a separate answer so I can mark it as accepted. – python dude Dec 30 '10 at 20:16
show 1 more comment
feedback

1 Answer

Nope - you said it yourself, static fields aren't serialized.

Kinda weird that the compiler lets you do that though.

link|improve this answer
3  
They are not serialized by the built in Java serializer. However other serializers can behave differently. – Peter Lawrey Dec 30 '10 at 20:00
1  
And even with another serializer, the point of saving static fields is...? – alpha123 Dec 30 '10 at 23:59
1  
@Peter, By the way serialVersionUID would be an exception. – Ustaman Sangat Sep 23 '11 at 15:11
@alpha123, there could be a million reasons, e.g. maybe the static field is a list of items and u want to persist them when your app shuts down. – Ustaman Sangat Sep 23 '11 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.