본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA

Annotation - @Native

@Native
네이티브 메서드를 나타냅니다. 즉, 네이티브 코드(일반적으로 다른 언어로 작성된 코드)를 호출하는 메서드임을 나타냅니다. 자바 네이티브 인터페이스(JNI)를 사용할 때 주로 활용됩니다.

class NativeExample {
 @Native
 public static native void someNativeMethod();
}

'JAVA' 카테고리의 다른 글

Annotation - @Documented  (0) 2024.02.15
Annotation - @Target  (0) 2024.02.15
Annotation - @FunctionalInterface  (0) 2024.02.15
Annotation - @SafeVarargs  (0) 2024.02.15
Annotation - @SuppressWarnings  (0) 2024.02.15