"Class variable"의 두 판 사이의 차이

 
21번째 줄: 21번째 줄:
==같이 보기==
==같이 보기==
*[[constructor]]
*[[constructor]]
*[[class method]]
*[[클래스 변수]]
*[[클래스 변수]]

2014년 6월 3일 (화) 22:03 기준 최신판


1 Ruby[ | ]

class Dog
  @@count = 0
  def initialize
    @@count += 1
  end
  def self.get_count
    return @@count
  end
end
myDog1 = Dog.new
myDog2 = Dog.new
puts "dog count: #{Dog.get_count}"
# 2

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}