Tuesday, 10 December 2019

What is the native keyword in Java for?



While playing this puzzle (It's a Java keyword trivia game), I came across the native keyword.



What is the native keyword in Java used for?


Answer



The native keyword is applied to a method to indicate that the method is implemented in native code using JNI (Java Native Interface).


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 ...