计算性能

发布于 2024-07-07 02:44:45 字数 1560 浏览 6 评论 0原文

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

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

发布评论

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

评论(6

云朵有点甜 2024-07-14 02:44:46

如果它只是您关心的一个函数,请在它周围包裹一百万次迭代循环,并用秒表计时。 然后秒转换为微秒。

另一方面,如果你想加快速度,你只需要 这个

If it's just one function you care about, wrap a million-iteration loop around it, and time it with a stopwatch. Then seconds translate to microseconds.

On the other hand, if you want to speed it up, all you need is this.

噩梦成真你也成魔 2024-07-14 02:44:45

您很幸运,因为有很多开源 Java 分析器可供您使用。

You're in luck as there are quite a few open source Java profilers available for you.

眼趣 2024-07-14 02:44:45

查看 Eclipse 的官方 TPTP 插件。 这几乎完成了您所描述的所有内容,并且(frikkin')还有更多。 我真的可以推荐它。

Take a look at the official TPTP plugin for Eclipse. This pretty much does all you describe and a (frikkin') whole lot more. I can really recommend it.

魂归处 2024-07-14 02:44:45

我不知道是否有 APIS,但您通常使用 currenttimemillis 函数来执行此操作...您在开始时测量时间,然后在执行结束时再次测量时间,瞧! 你得到了你的时间减去

I don't know if there are APIS, but you normally use the funciton currenttimemillis for that... You measure the time at the beggining, then again at the end of the execution and voila!!! you got your time substracting

旧伤还要旧人安 2024-07-14 02:44:45

Hiperic 提供了一个 GPLv2 许可的工具,用于监视所有类型的系统资源,称为 SIGAR(系统信息收集器和报告器)。

该工具用于在 GridGain(网格计算框架)中提供自适应负载平衡等功能。

http://www.hyperic.com/products/sigar.html

Hiperic provide a GPLv2 licenced tool for monitoring all sort of system resources called SIGAR (System Information Gatherer and Reporter).

This tool is used to provide things like adaptive load balancing in GridGain (a grid computing framework).

http://www.hyperic.com/products/sigar.html

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