2012年7月23日月曜日

開発環境

『Learning Ruby』(Michael Fitzgerald 著、O'Reilly Media、2007年、ISBN978-0-596-52986-4)の Chapter 9(Classes)Review Questions 4を解いてみる。

その他参考書籍

4.

True

コード(TextWrangler)

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

class C
  def initialize
    @str = "Hello, Ruby!"
  end
  def p
    puts @str
  end
  # クラスメソッド
  def C.p
    puts "Hello, World!"
  end
end

p C.ancestors

入出力結果(Terminal)

$ ./sample.rb
[C, Object, Kernel]
$

0 コメント:

コメントを投稿