Java-DBus 中的 GSList* 是什么?

发布于 2024-10-03 20:27:57 字数 359 浏览 4 评论 0原文

如何在 中创建方法purple_find_buddies >?具体来说,我必须指定什么作为返回类型而不是 GSList*

how can I create a method in a DBusInterface for purple_find_buddies? Specifically, what do I have to specify as the return type instead of GSList*?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鱼忆七猫命九 2024-10-10 20:27:57

看起来,它只是变成了一个 List - 在本例中,是一个 List

public List<Integer> PurpleFindBuddies(int account, String name);

此行属于 CreateInterface 为我生成的文件:

CreateInterface im.pidgin.purple.PurpleService /im/pidgin/purple/PurpleObject -f

As it seems, it simply becomes a List - in this case, a List<Integer>.

public List<Integer> PurpleFindBuddies(int account, String name);

This line belongs to a file that CreateInterface generated for me:

CreateInterface im.pidgin.purple.PurpleService /im/pidgin/purple/PurpleObject -f
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文