문제

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?

도움이 되었습니까?

해결책

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(:+)

다른 팁

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(:+)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top