作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是C++的新手。我正在尝试使用jni处理我的Java应用程序中可能发生的一些错误。这是我的try/catch块:
std::future<lib::LibVector> libVectorFuture;
try {
libVectorFuture = some::lib::getVector(param1, param2);
} catch (...) {
// report problem back to Java.
jclass Exception = env->FindClass("com/my/MyClientException");
env->ThrowNew(Exception, "Unable to get result from native getVector(String p1, String p2) method!");
}
lib::LibVector vector = libVectorFuture.get();
// here I'm using vector
当我使用有效的参数(param1,param2)时,它可以工作。但是,当我使用无效的参数时,会出现错误:
terminate called after throwing an instance of 'sdbus::Error'
最佳答案
最后,我写了一个解决方案。多谢您的回覆。
std::future<lib::LibVector> libVectorFuture;
try {
libVectorFuture = some::lib::getVector(param1, param2);
lib::LibVector vector = libVectorFuture.get(); // here I get error
} catch (...) {
// report problem back to Java.
jclass Exception = env->FindClass("com/my/MyClientException");
env->ThrowNew(Exception, "Unable to get result from native getVector(String p1, String p2) method!");
return nullptr;
}
关于java - 如何捕捉sdbus::Error exception in c++?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63231310/
我正在尝试使用 sdbus(sd-bus?)创建一个 dbus 服务,它将用一个代表套接字的 fd 进行响应。 我的客户端能够接收字符串和整数,所以我已经掌握了基础知识。我正在寻找的是如何将fd打包为
我是一名优秀的程序员,十分优秀!