[#1816] Ruby 1.5.3 under Tru64 (Alpha)? — Clemens Hintze <clemens.hintze@...>

Hi all,

17 messages 2000/03/14

[#1989] English Ruby/Gtk Tutorial? — schneik@...

18 messages 2000/03/17

[#2241] setter() for local variables — ts <decoux@...>

18 messages 2000/03/29

[ruby-talk:01964] Re: Class Variables

From: Hugh Sasse Staff Elec Eng <hgs@...>
Date: 2000-03-17 10:09:23 UTC
List: ruby-talk #1964
On 16 Mar 2000, Dave Thomas wrote:

> "David Douthitt" <DDouthitt@cuna.com> writes:
> 
	[...]
> > But I ALSO want to be able to do:
> > 
> > fooey.setting1 = 6;
> 
> Ah-ha! In that case, you want to use attributes
> 
>   class Foo
> 
>     attr_accessor :setting1, :setting2
> 
>     def initialize
>        @setting1 = 2
>        @setting2 = 5
>     end
>   end

Are these not accessing Instance variables, not class variables? I assume
from the @ and that there is talk of 1.5.x introducing @@variables, that
these are not true class variables, allowing instances of a class to share
a variable between them.
> 
> 
> Dave
> 
	Hugh
	hgs@dmu.ac.uk


In This Thread