wxWidgets 2.9中的wxGetElapsedTime函数+

发布于 2024-11-28 14:49:46 字数 441 浏览 1 评论 0原文

我正在尝试遵循一些旧的 C++ 教程,该教程使用旧版本的 wxWidgets 框架(我认为是 2.6),但我已经编译了版本 2.9.1,其中我找不到 wxGetElapsedTime()wxStartTimer() 方法。

经过时间方法用作 srand() 方法的参数,以“随机化”初始随机种子值,教程作者在此之后使用 wxStartTimer() 来重置计时器为零(而不是使用wxGetElapsedTime(true))。

srand(wxGetElapsedTime(false));
wxStartTimer();

在 Google 上进行一些搜索后,我发现这些方法已被弃用,但我找不到 2.9+ wxWidgets 中使用哪些函数的线索。

I'm trying to follow some old C++ tutorial which use old version o wxWidgets framework (2.6 I think), but I have complied version 2.9.1, where I could not find wxGetElapsedTime() and wxStartTimer() methods.

The elapsed time method is used as argument to srand() method to 'randomize' initial random seed value and the author of the tutorial use after that wxStartTimer() to reset timer to zero (instead of use wxGetElapsedTime(true)).

srand(wxGetElapsedTime(false));
wxStartTimer();

After some search on Google I found, that those methods are deprecated, but I could not find some clue which functions are used in 2.9+ wxWidgets instead.

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

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

发布评论

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

评论(2

九公里浅绿 2024-12-05 14:49:46

尝试

srand((int)wxGetLocalTime());

wxStopWatch * stopWatch = new wxStopWatch();

updateSomethingByTime( stopWatch->Time() );

try

srand((int)wxGetLocalTime());

and

wxStopWatch * stopWatch = new wxStopWatch();

updateSomethingByTime( stopWatch->Time() );
末蓝 2024-12-05 14:49:46

您可以尝试 wxStopWatch 类,它具有类似于测量时间的方法。尽管您可以从 wxDateTime 获取当前时间并使用它,但不确定如何获得播种 srand() 的系统正常运行时间。

You could try the wxStopWatch class it has methods like those for measuring times. Not sure how you'd get the system uptime for seeding srand() though, although you could get the current time from wxDateTime and use that.

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