B.java 305 B

12345678910111213141516171819
  1. class B
  2. {
  3. public B()
  4. {
  5. }
  6. public native void printName();
  7. static {
  8. try {
  9. System.loadLibrary("B");
  10. } catch (UnsatisfiedLinkError e) {
  11. System.err.println("Native code library failed to load.\n" + e);
  12. System.exit(1);
  13. }
  14. }
  15. }