This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi , Maybe this sounds a bit stupid, but what exactly are static classes and static interfaces? What is their use? I could not get hold of any satisfactory material.Can any one Help?? Thanks Pallavi.
Tony Morris
Ranch Hand
Joined: Sep 24, 2003
Posts: 1608
posted
0
static classes/interfaces MUST declared as inner classes/interfaces. You might benefit from investigating the use of inner classes/interfaces. You'll receive varying opinions regarding their use, since there is an on-going subjective debate about when, and how they are used, if ever.
Hi , I just saw ur query ( a bit of confusing though static classes are but u see not everything is fare when it comes to code ). First thing is that inner classes are complied in a seperate .class file . So if you want do some operations just at development time ( like testing and debugging) you can include its code in an inner class. While you may not deploy this .class file at runtime ( a big benefit when it comes to testing and t hen deploying web applications). While the inner class can access members of outer class it is tightly coupled wtih outer class which is against Encapsulation. Also sometimes they make the code really puzzling