1件ヒット
[1-1件を表示]
(0.301秒)
ライブラリ
- ビルトイン (1)
検索結果
-
Module
# public _ method _ defined?(name , inherit=true) -> bool (54415.0) -
インスタンスメソッド name がモジュールに定義されており、 しかもその可視性が public であるときに true を返します。 そうでなければ false を返します。
...たモジュールで
定義されたメソッドも対象になります。
@see Module#method_defined?, Module#private_method_defined?, Module#protected_method_defined?
//emlist[例][ruby]{
module A
def method1() end
end
class B
protected
def method2() end
end
class C < B
includ...