Java 查看某些基于时间的视图时,Mu (μ) 符号是什么意思

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/9720339/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-16 06:41:41  来源:igfitidea点击:

What is the Mu (μ) symbol mean when looking at some time based views

javajprofiler

提问by sproketboy

When I'm profiling I can see some data with ms (for milliseconds) but I also see μs. What does μs mean in JProfiler?

当我分析时,我可以看到一些带有 ms(毫秒)的数据,但我也看到了 μs。JProfiler 中的 μs 是什么意思?

采纳答案by BoltClock

It means microseconds, which is 1/1000th of a millisecond (1000 μs = 1 ms). The Greek letter mu (μ) is the SI prefix for micro-.

它表示微秒,即 1/1000 毫秒(1000 μs = 1 ms)。希腊字母 mu (μ) 是micro-的 SI 前缀。

回答by Heiko Rupp

Micro seconds = 1000th of a milli second

微秒 = 千分之一毫秒

回答by Michael Berry

As others have said it's 1000 times smaller than a millisecond, and is a standard measurement (not just for jprofiler.)

正如其他人所说,它比一毫秒小 1000 倍,并且是标准测量值(不仅适用于 jprofiler。)

There's a nice table herethat lists the various units, microseconds included!

有一个不错的表在这里列出了各单位,包括毫秒!