Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ruby で変数が存在しなかったかのように破棄したい。次に例を示します。
> defined? a => "nil" > a = 1 > defined? a => "local-variable"
ここで、変数 a を「nil」に設定する必要がありますdefined?。
defined?
私は次のようなことを試しました:
> a = nil #Not working => nil > defined? a => "local-variable"
しかし、何も機能していないようです。
現在 (MRI 2.2 以前) では、これを行う方法はありません。