Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. class A
  2. @@a = 1 # переменная класса
  3. @a = 2 # переменная экземпляра класса
  4. def initialize
  5. @a = 3 # переменная экземпляра
  6. end
  7. def a
  8. @a # переменная экземпляра
  9. end
  10. def aa
  11. @@a # переменная класса
  12. end
  13. def self.a
  14. @a # переменная экземпляра класса
  15. end
  16. def self.aa
  17. @@a # переменная класса
  18. end
  19. end
  20. a = A.new
  21. puts A.a # 2
  22. puts A.aa # 1
  23. puts a.a # 3
  24. puts a.aa # 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement