-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmy_class.rb
executable file
·85 lines (50 loc) · 1014 Bytes
/
my_class.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
class Thing
@@ccc = 'a'
def initialize
@abc = 'abcdsdfsdf'
end
def create_mmm
self.class.class_eval do
define_singleton_method :mmm do
'mmm'
end
end
end
def abc
puts @abc
end
end
# Thing.new.create_mmm
(t1 = Thing.new).create_mmm
puts Thing.mmm
# t1.class.class_exec { puts @@ccc }
# puts t1.mmm
# a = %q{}
# Thing.instance_exec do
# def self.hello
# "Hello there! "
# end
# end
# puts Thing.instance_exec { 'ccc = ' + (@@ccc = '1234') }
# puts Thing.hello()
# Thing.module_eval("invalid code", "dummy", 123)
# module Abcd
# def create_method
# puts self.name
# end
# end
# class MyClass
# # extend Abcd
# # create_method
# class_eval do
# # [:abcd].each do |method_name|
# define_method 'method_name12' do
# method_name.to_s
# end
# # end
# end
# end
# puts '@@@@@ instance level: ' + MyClass.new.method_name12
# puts
# puts '@@@@@ class level: ' + MyClass.method_name12
# #