Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Windows 和 Linux 上的 Java SE 中进行性能计数?
人们如何做到这一点?我想每秒监控消息/事件等
谢谢
性能计数器与其他计数器没有什么不同。你增加一个数字,每隔一段时间,你就用这个数字除以经过的时间。
基本上(这很简单,只考虑一个线程):1.)启动计时器有一个私人计数器 2.)每次发生某事时递增 3.)一秒钟后显示计数器中的数字 4.)重置计数器 5。)转到步骤 1。)