Java references
Newbies to C++ and Java often don't realize the relationship between references and pointers. Basically, references are pointers that are always dereferenced. Of course, in C++ you can actually use pointers or references. In Java, pretty much everything is by reference but this doesn't mean you can't have a nullPointerException. If you forget to initialize an object it will be null. Conceptually, C# works the same way as Java though you can actually use pointers using the "unsafe" keywords but you must explicitly declare it as unsafe.
Pascal Aschwanden
Pascal Aschwanden
