- Reflections - ok
- Static - ok
- Thread - verificando
Sobre Reflections:
class Teste
@variavel=1
end
Teste.instance_variables
retorna [@variavel]
class Teste
def metodo
1
end
end
t = Teste.new
t.methods
retorna os metodos mais metodo
"segundio a lendia quem olhava nos olhos da hipotenusa virava tijolo"
Sobre Threads:
c = Thread.new { Thread.stop; puts "hey!" }
c.wakeup
No comments:
Post a Comment