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.
Singleton Class次のコードを実行してもメッセージが表示されません。何故ですか ?
Singleton Class
ob = Object.new class << ob def func "Singleton class" end end ob.func
そのメソッドは文字列を返します。表示するには、を使用する必要がありますputs。
puts
これをで実行irbすると、結果の文字列が表示されます。これは、そのモードではすべての戻り値が自動的に出力されるためです。
irb