G
Glenn
[Note: parts of this message were removed to make it a legal post.]
Hi,
Suppose I wanted to create a method for an object that allowed me to pass in the name of an instance variable and to perform some task on the variable. For the sake of simplicity, let's say that I'd like to be able to print out the value of the specified instance variable. Also, I'd want the method to raise an exception if the name of the variable getting passed into the object is not actually an instance variable in the object.
The class would look something like this:
class SomeClass
def initialize
@a = 1
@b = 'xxx'
end
def print_instance_variables(obj)
# some code goes here
end
end
And here's how I'd like to be able to use it:
x = SomeClass.new
x.print_instance_variablesa) # writes the value of @a to the console
x.print_instance_variablesb) # writes the value of @b to the console
x.print_instance_variablesa, :b) # writes the values of @a and @b to the console
x.print_instance_variablesz) # causes an exception because there is no@z
Any suggestions would be greatly appreciated.
Thanks,
Glenn
Hi,
Suppose I wanted to create a method for an object that allowed me to pass in the name of an instance variable and to perform some task on the variable. For the sake of simplicity, let's say that I'd like to be able to print out the value of the specified instance variable. Also, I'd want the method to raise an exception if the name of the variable getting passed into the object is not actually an instance variable in the object.
The class would look something like this:
class SomeClass
def initialize
@a = 1
@b = 'xxx'
end
def print_instance_variables(obj)
# some code goes here
end
end
And here's how I'd like to be able to use it:
x = SomeClass.new
x.print_instance_variablesa) # writes the value of @a to the console
x.print_instance_variablesb) # writes the value of @b to the console
x.print_instance_variablesa, :b) # writes the values of @a and @b to the console
x.print_instance_variablesz) # causes an exception because there is no@z
Any suggestions would be greatly appreciated.
Thanks,
Glenn