Tuesday 5 March 2019

Absence of pointers in Java

If there is no concept of pointers is Java, does this mean there is no way to access memory of a computer through Java?

Or if it is possible, how does Java compensate for absence of pointers?

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...