程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Qt 調用 Java 方法筆記

Qt 調用 Java 方法筆記

編輯:JAVA綜合教程

Qt 調用 Java 方法筆記


Qt 調用 Java 方法筆記

如果遇到類似的錯誤:

error: undefined reference to '_jstring* QAndroidJniObject::callStaticMethod<_jstring*>(char const*, char const*)'

那就是你使用了一個錯誤的函數來調用 Java 方法了。

The main difference is that QAndroidJniObject::callMethod returns a primitive data type like jint or jbyte but QAndroidJniObject::callObjectMethod returns an object of type QAndroidJniObject.

Using which one all depends on your needs and the return type of the function you want to call. If your function returns an object type like jobject, jstring, jarray,… then you should definitely use QAndroidJniObject::callObjectMethod. Otherwise you can use either of the two.

就是參照以調用的 Java 方法返回的對象來使用不同的函數,如果返回參數為對象例如是數組,字符串,就使用 QAndroidJniObject::callObjectMethod,如果是基本數據類型就使用 QAndroidJniObject::callMethod

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved