Tag Archives: Java

Processing Work

Just some applets experimenting with Processing for a university paper…

Simple Animation
Image Manipulation

NullPointerException

Why is this such an insidious error in Java? (An opinion piece!)
A Comparison
Firstly, I’ll show a short comparison between some Java code and some code from a language that doesn’t have NullPointerExceptions, but does have something that allows you to accomplish anything you might want to do with null pointers.
This Java code:
AnObject thing = someMethod();
is [...]