Ruby 2.1.0 リファレンスマニュアル > ライブラリ一覧 > benchmarkライブラリ > Benchmark::Tmsクラス

class Benchmark::Tms

クラス・モジュールの継承リスト: Benchmark::Tms < Object < Kernel < BasicObject

要約

ベンチマークの計測に関連する各種時間を表現するクラスです。

特異メソッド

定義 説明
new(utime = 0.0, stime = 0.0, cutime = 0.0, cstime = 0.0, real = 0.0, label = nil) -> Benchmark::Tms

新しい Benchmark::Tms オブジェクトを生成して返します。

インスタンスメソッド

定義 説明
self * x -> Benchmark::Tms

self と x の乗算を計算します。

self + x -> Benchmark::Tms

self と x の加算を計算します。

self - x -> Benchmark::Tms

self と x の減算を計算します。

self / x -> Benchmark::Tms

self と x の除算を計算します。

add { ... } -> Benchmark::Tms

与えられたブロックの実行時間を self に加算して新しい Benchmark::Tms オブジェクトを生成して返します。

add! { ... } -> self

与えられたブロックの実行時間を self に加算して返します。

cstime -> Float

子プロセスの System CPU time

cutime -> Float

子プロセスの User CPU time

format(fmtstr = nil, *args) -> String

self を指定されたフォーマットで整形して返します。

label -> String

ラベル。

real -> Float

実経過時間。

stime -> Float

System CPU time

to_a -> Array

6 要素の配列を返します。

to_s -> String

引数を省略して Benchmark::Tms#format を呼び出すのと同じです。

total -> Float

合計時間。(utime + stime + cutime + cstime)

utime -> Float

User CPU time

protectedメソッド

定義 説明
memberwise(op, x) -> Benchmark::Tms

Benchmark::Tms の四則演算を実行するために内部で使用されるメソッドです。

定数

定義 説明
CAPTION -> String

Benchmark.#bm の内部などで使用されます。

FORMAT -> String

Benchmark.#benchmark の第三引数のデフォルト値。

継承したメソッド

! != __id__ __send__ instance_eval instance_exec method_missing singleton_method_added singleton_method_removed singleton_method_undefined !~ <=> == === =~ _dump class clone define_singleton_method display enum_for eql? equal? extend freeze frozen? hash initialize initialize_copy inspect instance_of? instance_variable_defined? instance_variable_get instance_variable_set instance_variables is_a? itself marshal_dump marshal_load method methods must_be must_be_close_to must_be_empty must_be_instance_of must_be_kind_of must_be_nil must_be_same_as must_be_within_epsilon must_equal must_include must_match must_raise must_respond_to must_send must_throw nil? object_id pretty_inspect pretty_print pretty_print_cycle pretty_print_inspect pretty_print_instance_variables private_methods protected_methods psych_to_yaml public_method public_methods public_send remove_instance_variable respond_to? respond_to_missing? send singleton_class singleton_method singleton_methods taint tainted? tap to_ary to_hash to_int to_io to_proc to_regexp to_str trust untaint untrust untrusted? .yaml_tag ::ARGF ::ARGV ::DATA ::ENV ::FALSE ::NIL ::RUBY_COPYRIGHT ::RUBY_DESCRIPTION ::RUBY_ENGINE ::RUBY_PATCHLEVEL ::RUBY_PLATFORM ::RUBY_RELEASE_DATE ::RUBY_REVISION ::RUBY_VERSION ::SCRIPT_LINES__ ::STDERR ::STDIN ::STDOUT ::TOPLEVEL_BINDING ::TRUE