up vote 0 down vote favorite
share [g+] share [fb]

What does the 'static' do in this file, sample.groovy?

static class froob {
}

The groovy code compiles fine with 'static' or without it.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

There is absolutely no difference. The static in this situation is ignored.

To test, I created a groovy class and piped the output of "javap -verbose StaticTest" to a file. Then put "static" before the class def and piped that to a 2nd file. I then diffed the two files. The only differences were those unique ids that are associated with the long class ID that gets generated new for every class.

link|improve this answer
feedback

Are you referring to the static class or the static method "main" within the static class?

The keyword "static" means that allocation starts when the program begins and ends when the program ends. In other words, there's no way to programmatically create an instance of class "froob," but rather an instance is automatically create when the program beings and will exist until your program ends.

In the context of your small sample program, it is effectively meaningless. Only the "main" class needs to be static, as it needs to "exist" prior to any code within the program having been executed.

link|improve this answer
Humm. This appears to work/execute from the Groovy Console static class froob { static void main(String[]f){ println "huh" println new froob().class.name } } – Bob Herrmann May 12 '09 at 11:41
Bah! stupid comment formatting <pre> static class froob { static void main(String[]f){ println "huh" println new froob().class.name } } </pre> – Bob Herrmann May 12 '09 at 11:41
feedback

In Java, only an inner class can be static. Prior to Groovy 1.7 inner classes are prohibited, and declaring a top-level class static has no effect.

In Groovy 1.7+ I expect static inner classes to have the same semantics as they do in Java. Declaring a top-level class will likely have no effect (or be prohibited by the compiler).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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