avatar tianjara.net | blog icon Andrew Harvey's Blog

COMP2911 Wk 01
14th March 2009

A few random things I've picked up this week that I think are noteworthy.

To my understanding,


Some indicators of Good Design,

Some indicators of Bad Design,


Eclipse and NetBeans are both IDE's. They pretty much do the same thing. Though NetBeans is made by Sun.


I think these two slides from Potter's notes sum things up nicely.

point_class_annotatedpoint_annotatedAn extension of this point class is, (the arrows show which variables java is refering to)

point_class2And some sample code to use this class,

   Point p = null;
   p = new Point(1, 2);
   System.out.println(p.getCoord());
Tags: comp2911.