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

class Benchmark::Tms

クラスの継承リスト: Benchmark::Tms < Object < Kernel

要約

特異メソッド

定義 説明
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)

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

label -> String

ラベル。

memberwise(op, x) -> Benchmark::Tms

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

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

定数

定義 説明
CAPTION

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

FMTSTR

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

継承したメソッド

== === =~ __id__ __send__ _dump class clone dclone display enum_for eql? equal? extend freeze frozen? hash initialize initialize_copy inspect instance_eval instance_exec instance_of? instance_variable_defined? instance_variable_get instance_variable_set instance_variables is_a? marshal_dump marshal_load method method_missing methods nil? pretty_inspect pretty_print pretty_print_cycle pretty_print_inspect pretty_print_instance_variables private_methods protected_methods public_methods remove_instance_variable respond_to? singleton_method_added singleton_method_removed singleton_method_undefined singleton_methods taint tainted? tap to_ary to_hash to_int to_io to_proc to_regexp to_str to_yaml to_yaml_properties to_yaml_style untaint