#!/usr/local/bin/ruby class C def my_p( obj ) real_my_p(obj) # レシーバ指定なしで呼べる end def real_my_p( obj ) p(obj) end end C.new().my_p(1) # 1を表示