Friday, May 01, 2009

Ruby Reflections

Pré requisitos para fazer os Casos de Uso, com controle invertido em Ruby
  • 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: