144件ヒット
[1-100件を表示]
(0.152秒)
別のキーワード
種類
- インスタンスメソッド (48)
- 関数 (48)
- 文書 (48)
ライブラリ
- ビルトイン (48)
キーワード
-
NEWS for Ruby 2
. 1 . 0 (12) - Rubyで使われる記号の意味(正規表現の複雑な記号は除く) (12)
- Ruby用語集 (12)
-
private
_ class _ method (24) -
rb
_ singleton _ class (12) -
rb
_ singleton _ class _ attached (12) -
rb
_ singleton _ class _ clone (12) -
rb
_ singleton _ class _ new (12) -
singleton
_ class? (12) - クラス/メソッドの定義 (12)
検索結果
先頭5件
-
Object
# singleton _ class -> Class (24225.0) -
レシーバの特異クラスを返します。 まだ特異クラスがなければ、新しく作成します。
...nil か true か false なら、それぞれ NilClass, TrueClass,
FalseClass を返します。
@raise TypeError レシーバが Integer、Float、Symbol の場合に発生します。
//emlist[][ruby]{
Object.new.singleton_class #=> #<Class:#<Object:0xb7ce1e24>>
String.singleton_class #=> #......<Class:String>
nil.singleton_class #=> NilClass
//}
@see Object#class... -
VALUE rb
_ singleton _ class(VALUE obj) (12300.0) -
obj に特異クラスを導入し、その特異クラスを返します。 すでに特異クラスが導入されているときはそれをそのまま返します。
...bj に特異クラスを導入し、その特異クラスを返します。
すでに特異クラスが導入されているときはそれをそのまま返します。
obj が特異メソッドを定義できない型のオブジェクトである
ときは例外 TypeError を発生します。... -
VALUE rb
_ singleton _ class _ clone(VALUE klass) (12300.0) -
特異クラス klass を clone して返します。 klass が特異クラスでないときはただ klass を返します。
...特異クラス klass を clone して返します。
klass が特異クラスでないときはただ klass を返します。... -
VALUE rb
_ singleton _ class _ new(VALUE super) (12300.0) -
super をスーパークラスとする特異クラスを生成し、返します。
...super をスーパークラスとする特異クラスを生成し、返します。... -
Module
# singleton _ class? -> bool (12219.0) -
self が特異クラスの場合に true を返します。そうでなければ false を返し ます。
...self が特異クラスの場合に true を返します。そうでなければ false を返し
ます。
//emlist[例][ruby]{
class C
end
C.singleton_class? # => false
C.singleton_class.singleton_class? # => true
//}... -
void rb
_ singleton _ class _ attached(VALUE klass , VALUE obj) (12200.0) -
特異クラス klass にその唯一のインスタンス obj を結びつけます。
特異クラス klass にその唯一のインスタンス obj を結びつけます。 -
Module
# private _ class _ method(*name) -> self (6112.0) -
name で指定したクラスメソッド (クラスの特異メソッド) の 可視性を private に変更します。
...name で指定したクラスメソッド (クラスの特異メソッド) の
可視性を private に変更します。
@param name 0 個以上の String または Symbol を指定します。
@param names 0 個以上の String または Symbol を Array で指定します。
//emlist[例][rub......y]{
module Foo
def self.foo; end
end
Foo.singleton_class.private_method_defined?(:foo) # => false
Foo.private_class_method(:foo) # => Foo
Foo.singleton_class.private_method_defined?(:foo) # => true
//}... -
Module
# private _ class _ method(names) -> self (6112.0) -
name で指定したクラスメソッド (クラスの特異メソッド) の 可視性を private に変更します。
...name で指定したクラスメソッド (クラスの特異メソッド) の
可視性を private に変更します。
@param name 0 個以上の String または Symbol を指定します。
@param names 0 個以上の String または Symbol を Array で指定します。
//emlist[例][rub......y]{
module Foo
def self.foo; end
end
Foo.singleton_class.private_method_defined?(:foo) # => false
Foo.private_class_method(:foo) # => Foo
Foo.singleton_class.private_method_defined?(:foo) # => true
//}... -
NEWS for Ruby 2
. 1 . 0 (6012.0) -
NEWS for Ruby 2.1.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
...NEWS for Ruby 2.1.0
このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
それぞれのエントリーは参照情報があるため短いです。
十分な情報と共に書かれた全ての変更のリス......トは ChangeLog ファイルか bugs.ruby-lang.org の issue を参照してください。
== 2.0.0 以降の変更
=== 言語仕様の変更
* キーワード引数のデフォルト値が省略可能になりました。これらの「必須キーワード引数」は呼び出し時に明......になりました
* Kernel
* 追加: Kernel#singleton_method(Object#singleton_method)
* Module
* 追加: Module#using, which activates refinements of the specified module only
in the current class or module definition.
* 追加: Module#singleton_class? レシーバーが特...