Interessa la memoria se ho due classi Java che hanno chiamate native al codice C compilato e chiamo entrambe quelle classi in un'altra classe? Ad esempio, ho Classe A e Classe B con entrambe le chiamate alle funzioni native. Sono configurazione come questa:Chiamata JNI Java per caricare la libreria
public class A{
// declare the native code function - must match ndkfoo.c
static {
System.loadLibrary("ndkfoo");
}
private static native double mathMethod();
public A() {}
public double getMath() {
double dResult = 0;
dResult = mathMethod();
return dResult;
}
}
public class B{
// declare the native code function - must match ndkfoo.c
static {
System.loadLibrary("ndkfoo");
}
private static native double nonMathMethod();
public B() {}
public double getNonMath() {
double dResult = 0;
dResult = nonMathMethod();
return dResult;
}
}
Classe C quindi chiama entrambi, poiché entrambi fanno una chiamata statica per caricare la libreria si che la materia in classe C? O è meglio avere Classe C chiamata System.loadLibrary (...?
public class C{
// declare the native code function - must match ndkfoo.c
// So is it beter to declare loadLibrary here than in each individual class?
//static {
// System.loadLibrary("ndkfoo");
//}
//
public C() {}
public static void main(String[] args) {
A a = new A();
B b = new B();
double result = a.getMath() + b.getNonMath();
}
}