Skip to content

Commit 71eb158

Browse files
committedFeb 10, 2021
[아이템 66] 네이티브 메서드는 신중히 사용하라
- Close java-squid#68
1 parent 93d87c6 commit 71eb158

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎chapter09/item66/README.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Item 66: Use native methods judiciously
2+
3+
## Key Points
4+
- It is rarely advisable to use native methods.
5+
- Use the [Java process API](https://docs.oracle.com/en/java/javase/14/docs/api/java.base/java/lang/Process.html)
6+
to access OS processes and platform-specific facilities.
7+
- Native methods:
8+
- are not *safe*.
9+
- are less portable.
10+
- are harder to debug.
11+
- can *decrease* performance if not used correctly.
12+
- requires tedious "glue code".
13+
- But correct usage *can* provide improved performance, e.g. using native
14+
libraries like GMP.
15+

0 commit comments

Comments
 (0)
Please sign in to comment.