Java Study Notes - 2012/02/07
C++: new operator (new) => delete required (because memory is limited)
JAVA: new operator (new) => JVM (Java Virtual Machine handles automatic deletion: garbage collection)
Features excluded from Java (compared to C++):
- Pointers
- Multiple inheritance
- Structs
- Global variables
- goto statements
- Operator overloading (+, - function programming)
Java characteristics:
- Object-oriented (reduced from C++ OOP)
- Distributed environment (RMI functionality provided)
