質問

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