Difference between revisions of "Talk:1188: Bonding"

Explain xkcd: It's 'cause you're dumb.
Jump to: navigation, search
(Created page with "I noticed that Ball extends Throwable, but is not a variable. The "Throw Ball" line would either result in a compilation error, or go to the catch statement and cause an infin...")
 
Line 1: Line 1:
I noticed that Ball extends Throwable, but is not a variable. The "Throw Ball" line would either result in a compilation error, or go to the catch statement and cause an infinite loop/stack overflow.
+
The aim method results in an infinite loop/stack overflow, note that ball is an exception of type Ball.  
 
+
Code is intentionally hard to follow.
Other than that, it just takes some Java knowledge and patience to understand. I assume it's supposed to be tough to follow at first.
 

Revision as of 06:05, 20 March 2013

The aim method results in an infinite loop/stack overflow, note that ball is an exception of type Ball. Code is intentionally hard to follow.