update at 2022-02-25 14:50:02 by ehlxr

This commit is contained in:
2022-02-25 14:50:02 +08:00
parent cef17e09ec
commit bac25e0830
2 changed files with 49 additions and 11 deletions

View File

@@ -31,7 +31,7 @@ class HelloWorld {
private static native void asyncComputation(HelloWorld callback);
private static native String getFiled(HelloWorld param);
private static native List<Map<String, Long>> getFiled(HelloWorld param);
public static void main(String[] args) {
String output = HelloWorld.hello("Java");
@@ -69,7 +69,7 @@ class HelloWorld {
hw.age = 30;
hw.ls = ls;
hw.map = map;
System.out.println(HelloWorld.getFiled(hw));
System.out.println("get return: "+HelloWorld.getFiled(hw));
}
public String getName() {