Pregunta

So I want to use instance variables to do something like

@array.each {|x,y|x+y}

It doesn't seem to be working, and I'm wondering if that is the correct syntax to use with an instance variable, or should it be something like

@array.each |x, y| x+y

or

@array.each [|x,y| x+y]

Do I need to use yield for this?

¿Fue útil?

Solución

In general terms, there's no difference between a local and a instance variable, except for its scope. You can use it the very same way.

The problem with your code is that there's no each with two variables (x and y, in your example) for arrays.

You can do either:

total = 0
@array.each { |x| total += x }

Or:

total = @array.inject(0) { |tot, x| tot += x }

Or:

total = @array.inject { |tot, x| tot += x }

Which can be written also like this:

total = @array.inject(:+)

Otros consejos

You should have only one variable within the block:

@array.each { |x| ... }

The method each will traverse the array one by one.

You are looking for inject:

@array.inject(:+)

If you want to sum the elements (which seems to be your purpose).

@array.inject(:+)
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top