Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On http://golf.shinh.org I found this "Enum Answer" to a Java code golf problem, and it won't work for me.

enum R{R;System z;{try{for(;;)for(int c=z.in.read(),i=47<c&c<58?c-48:1;i-->1/~c;)z.out.write(c);}catch(Exception e){}}}

Whenever I try to copy and paste the answer to the problem myself, I get (as expected) runtime errors and the answer fails.

Exception in thread "main" java.lang.NoClassDefFoundError: test
Caused by: java.lang.ClassNotFoundException: test
    at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
Could not find the main class: test. Program will exit.

The user teebee has answered many questions using this pattern and therefore always seems to get the lowest scores for Java. I want to duplicate their pattern and decrease my scores. Any ideas??

share|improve this question
2  
Since the class is named 'R', you have to put it in a file called 'R.java'. Then it works (though it does give a warning). – marinus Oct 26 '11 at 2:50
3  
Belongs on SO... – JB. Oct 26 '11 at 13:49
@JB: Wasn't sure, feel free to migrate :-) – mellamokb Oct 26 '11 at 16:44

migrated from codegolf.stackexchange.com Oct 26 '11 at 17:29

1 Answer

up vote 4 down vote accepted

How does it even run?

It's an enum with one instance (R), a non-static field (z), and an instance initialiser. If you save it in R.java, compile, and run as java R, the following happens:

  1. The class R is loaded, and its static initialiser is called.
  2. The static initialiser fills in the enum instances, so it calls the constructor (in this case the default constructor).
  3. The constructor calls the instance initialiser, which does the work.
  4. Now that the class is loaded, the VM looks for a public static void main(String[] args) method. It doesn't find one, so it emits an error to stderr and quits.

Note that instance initialisers may not throw exceptions, so the try-catch is necessary.

share|improve this answer
+1 Makes sense now. I didn't realize the filename requirement applied even to an enum. – mellamokb Oct 26 '11 at 16:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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