wxWidgets 2.9中的wxGetElapsedTime函数+
我正在尝试遵循一些旧的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
并
try
and
您可以尝试 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.