[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Is [ ] really a method ?

raja

6/2/2007 3:43:00 AM

Hi all,

Well while running down the text I read that [] (used in case Arrays and
Hashes) is actually a method called on that Array/hash object and also
that it can be overridden.

well point taken.

BUT if this is just another case of operator overloading then how come
we can call

a[1]='item'

rather than calling

a[]1 ='item'

(Anyways this gave me a syntax error)
Or perhaps it is just another case of Syntactic Sugar?
Or perhaps not, because if that has to be true than the second statement
should also have been true.

So Is [] really a method or is a simple grammar token?

Thanks
Raja

--
Posted via http://www.ruby-....

3 Answers

Morton Goldberg

6/2/2007 3:57:00 AM

0

On Jun 1, 2007, at 11:42 PM, Vin Raja wrote:

> Hi all,
>
> Well while running down the text I read that [] (used in case
> Arrays and
> Hashes) is actually a method called on that Array/hash object and also
> that it can be overridden.
>
> well point taken.
>
> BUT if this is just another case of operator overloading then how come
> we can call
>
> a[1]='item'
>
> rather than calling
>
> a[]1 ='item'
>
> (Anyways this gave me a syntax error)
> Or perhaps it is just another case of Syntactic Sugar?
> Or perhaps not, because if that has to be true than the second
> statement
> should also have been true.
>
> So Is [] really a method or is a simple grammar token?

You are really asking about []= which is a different method than [].
And, yes, it really is a method, as is shown by

a = ['a']
a.[]=(1, 'b')
a # => ["a", "b"]

which is the same as

a = ['a']
a[1] = 'b'
a # => ["a", "b"]

Regards, Morton

Gregory Seidman

6/2/2007 4:03:00 AM

0

On Sat, Jun 02, 2007 at 12:42:54PM +0900, Vin Raja wrote:
> Well while running down the text I read that [] (used in case Arrays and
> Hashes) is actually a method called on that Array/hash object and also
> that it can be overridden.
>
> well point taken.
>
> BUT if this is just another case of operator overloading then how come
> we can call
>
> a[1]='item'
>
> rather than calling
>
> a[]1 ='item'
>
> (Anyways this gave me a syntax error)
> Or perhaps it is just another case of Syntactic Sugar?
> Or perhaps not, because if that has to be true than the second statement
> should also have been true.
>
> So Is [] really a method or is a simple grammar token?

Everything is a token in the grammar, of course. When the code is being
parsed the [] is matched as a token, in this case the brackets operator.
The reason your first example works and your second does not is that the
grammar rules for the brackets operator take the arguments to the operator
from between the literal open and close bracket characters. Placing those
arguments outside the brackets, unsurprisingly, does not work.

Since all operators are implemented as method calls in Ruby, the text is
indeed correct in that [] is called as a method on an Array, Hash, or
whatever the object is.

Note, by the way, that the operator in your examples is actually []= rather
than [], i.e. it is an element assignment rather than an element retrieval.

> Thanks
> Raja
--Greg


David Morton

6/2/2007 4:21:00 AM

0

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


On Jun 1, 2007, at 10:42 PM, Vin Raja wrote:

> Hi all,
>
> Well while running down the text I read that [] (used in case
> Arrays and
> Hashes) is actually a method called on that Array/hash object and also
> that it can be overridden.
>
> well point taken.
>
> BUT if this is just another case of operator overloading then how come
> we can call
>
> a[1]='item'
>
> rather than calling
>
> a[]1 ='item'
>
> (Anyways this gave me a syntax error)



try:

a.[](1)

and

a.[]=(1,'item')


I'd say it is syntactical sugar for those methods....


David Morton
Maia Mailguard http://www.maiamai...
mortonda@dgrmm.net



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFGYOiQUy30ODPkzl0RAnigAJ9GYjaWL0oqfrQTW5gp1jIdSE7NgACfQJ34
g0x2F9TIfcHLYDbQm1QIWSY=
=kMhu
-----END PGP SIGNATURE-----