Benutzer:Oneup/Pastebin: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
(Die Seite wurde neu angelegt: how to write attr_accessor :foo style stuff in ruby {{{ class Module def trace_attr(sym) self.module_eval %{ def #{sym} printf "Accessing %s with value %s...)
 
Zeile 1: Zeile 1:
 
how to write attr_accessor :foo style stuff in ruby
 
how to write attr_accessor :foo style stuff in ruby
  
{{{
+
<pre><code>
 
class Module
 
class Module
 
   def trace_attr(sym)
 
   def trace_attr(sym)
Zeile 20: Zeile 20:
 
end
 
end
 
Dog.new("Fido").name  # => Accessing name with value "Fido"
 
Dog.new("Fido").name  # => Accessing name with value "Fido"
}}}
+
</pre></code>

Version vom 19. Mai 2008, 14:06 Uhr

how to write attr_accessor :foo style stuff in ruby

<code>
class Module
  def trace_attr(sym)
    self.module_eval %{
      def #{sym}
	printf "Accessing %s with value %s\n",
	  "#{sym}", @#{sym}.inspect
	@#{sym}
      end
    }
  end
end
class Dog
  trace_attr :name
  def initialize(string)
    @name = string
  end
end
Dog.new("Fido").name  # => Accessing name with value "Fido"