Re: .Net or Java? which one?
Hi,
Platform independant
Compiled, bytecode
OOP, Single inheritance with interfaces
Componental
Type safe
Pointer safe, no memory/pointer arithmetic; in keeping with C++ term, they call it a reference
Garbage collector; you need not delete something new'd
So prefer java.
|