我正在尝试将空值传递给QAndroidJniObject::callObjectMethod()
,但找不到如何做。
代码:
void generateEncryptionKey()
{
auto keyStore = getKeystore();
auto generator = getKeyGenerator();
keyStore.callObjectMethod(
"load",
"(Ljava/security/KeyStore/LoadStoreParameter;)V"
// what to put here for null value?
);
}
答案 0 :(得分:2)
使用nullptr
:NULL
不属于C ++。
keyStore.callObjectMethod("load",
"(Ljava/security/KeyStore/LoadStoreParameter;)V", nullptr);