gpt4 book ai didi

c++ - 是否有可能知道在带有 Qt 的 symbian 手机上正在运行哪些进程?

转载 作者:太空狗 更新时间:2023-10-29 23:09:10 26 4
gpt4 key购买 nike

我知道使用 Symbian C++ 是可能的

如下代码

void GetProcessListL(void)
{
TFullName res;
TFindProcess find;
while(find.Next(res) == KErrNone)
{
RProcess ph;
ph.Open(find);

// here you can use
// functions of the RProcess
// to get more information
// of the selected process.

// res will have the process name..

ph.Close();
}
}

但是,有没有办法只使用 Qt 来做到这一点?

由于 Symbian C++ 显然已经过时,甚至诺基亚也不建议再使用它。

谢谢,

最佳答案

根据 Qt Centre 上的帖子去年:

What Qt APIs will I need to get the processes for the QStringList?

得到 一个字符串列表必须在 native 方式,所以我无法在这方面帮助您。

这里有一篇关于诺基亚开发者的文章 Using Qt and Symbian C++ Together使用 PIMPL 模式,它展示了如何从 Qt 代码调用本地 Symbian C++。如果你想在其他平台上运行它,当然必须移植它。

关于c++ - 是否有可能知道在带有 Qt 的 symbian 手机上正在运行哪些进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6400573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com