Ruby 2.5.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Rationalクラス
クラス・モジュールの継承リスト: Rational < Numeric < Comparable < Object < Kernel < BasicObject
有理数を扱うクラスです。
「1/3」のような有理数を扱う事ができます。Integer や Float と同様に Rational.new ではなく、 Kernel.#Rational を使用して Rational オブジェクトを作成します。
Rational(1, 3) # => (1/3)
Rational('1/3') # => (1/3)
Rational('0.33') # => (33/100)
Rational.new(1, 3) # => NoMethodError
Rational オブジェクトは常に既約(それ以上約分できない状態)である事に注意してください。
Rational(2, 6) # => (1/3)
Rational(1, 3) * 3 # => (1/1)
定義 | 説明 | |
---|---|---|
convert(*arg) -> Rational
|
引数を有理数(Rational)に変換した結果を返します。 |
|
marshal_dump -> Array
|
Marshal.#load のためのメソッドです。 Rational::compatible#marshal_load で復元可能な配列を返します。 |
!
!=
__id__
__send__
instance_eval
instance_exec
method_missing
singleton_method_added
singleton_method_removed
singleton_method_undefined
%
+@
abs2
angle
conj
div
divmod
eql?
finite?
i
imag
infinite?
integer?
nonzero?
polar
real
real?
rect
remainder
step
to_c
to_int
zero?
!~
===
=~
_dump
class
clone
define_singleton_method
display
enum_for
equal?
extend
freeze
frozen?
initialize
initialize_copy
instance_of?
instance_variable_defined?
instance_variable_get
instance_variable_set
instance_variables
is_a?
itself
marshal_load
method
methods
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_a
to_ary
to_hash
to_io
to_proc
to_regexp
to_str
trust
untaint
untrust
untrusted?
yield_self
.new
.yaml_tag
::ARGF
::ARGV
::DATA
::ENV
::FALSE
::NIL
::RUBY_COPYRIGHT
::RUBY_DESCRIPTION
::RUBY_ENGINE
::RUBY_ENGINE_VERSION
::RUBY_PATCHLEVEL
::RUBY_PLATFORM
::RUBY_RELEASE_DATE
::RUBY_REVISION
::RUBY_VERSION
::SCRIPT_LINES__
::STDERR
::STDIN
::STDOUT
::TOPLEVEL_BINDING
::TRUE
定義 | 説明 | ライブラリ |
---|---|---|
json_create(hash) -> Rational
|
JSON のオブジェクトから Rational のオブジェクトを生成して返します。 |
json/add/rational |
to_d(nFig) -> BigDecimal
|
自身を BigDecimal に変換します。 |
bigdecimal/util |
to_json(*args) -> String
|
自身を JSON 形式の文字列に変換して返します。 |
json/add/rational |