找出java程序的系统要求?
我想知道如何测试我的程序,实际上是一个游戏。找出人们需要什么硬件来玩游戏。我有点希望有一种方法可以在你的系统上监控这一点,这样我就可以看到他们对游戏的特定部分需要什么。谢谢!
I would like to know how to test my program, actually a game. To find out what the person will need hardware wise to play the game. I was kind of hoping there was a way to monitor this on your system so I could see what they would need for particular parts of the game. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有一个简单的方法。您需要找到一种方法来测量有关您的程序的有意义的统计数据,例如每秒帧数。以编程方式减慢应用程序速度并判断最慢但可接受的性能。然后,您将必须在几个不同的硬件上测试您的应用程序,以大致了解性能差异并用于计算粗略的最低要求。
There is not a simple way. You need to find a way to measure meaningful stats about your program like Frames Per Second. Programatically slow down the app and judge what is the slowest yet acceptable performance. Then you will have to test your app on several different pieces of hardware to find a rough idea of the performance difference and to use to calculate a rough minimum requirement.