InterviewSolution
Saved Bookmarks
| 1. |
C++ supports Pointers, while Java does not. Why? |
|
Answer» Pointers are considered unsafe in Java, so it does not SUPPORT it. The LACK of pointers is to STOP Java PROGRAMS from referencing MEMORY locations illegally. |
|