20 lines
305 B
Java
20 lines
305 B
Java
|
class C
|
||
|
{
|
||
|
public C()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public native void printName();
|
||
|
|
||
|
static {
|
||
|
try {
|
||
|
|
||
|
System.loadLibrary("B");
|
||
|
|
||
|
} catch (UnsatisfiedLinkError e) {
|
||
|
System.err.println("Native code library failed to load.\n" + e);
|
||
|
System.exit(1);
|
||
|
}
|
||
|
}
|
||
|
}
|