Search Results

0
votes
1answer
279 views

What is the ‘best’ type of java.awt.image.BufferedImage?

I am creating a buffered image that is going to be a snapshot of a JComponent (via paint()) and rendered inside an …
1
vote

Use continue or Checked Exceptions when checking and processing objects

Use continue, especially in loops. Most Exceptions create a stack trace that can be a major performance hit in a tight loop. You need to override fillInStackTrace to avoid the hit. Stylis …
0
votes

Why do people have trouble learning recursion?

People have trouble learning recursion because they don't understand recursion. To understand recursion you must first learn it. The difficult lies in finding the base case, where d …