Why am i getting this null pointer exception when i execute my for loop?
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at A3JPanel.actionPerformed(A3JPanel.java:141) at javax.swing.Timer.fireActionPerformed(Unknown Source) at javax.swing.Timer$DoPostEvent.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(Unknown Source)
My code:
for (int i = 0; i < dots.length; i++) {
dots[i].moveDots();
}
dotsarray or one of the elements in it isnull. Can you provide more context of the surrounding code so that we can try to see why that might be? – templatetypedef May 30 '11 at 23:41