I am having this problem which I can't seem to get my head around. I would like some help on this.

@user.update_languages(params[:language][:language1], params[:language][:language2], params[:language][:language3])
lang_errors = @user.errors
logger.debug "--------------------LANG_ERRORS----------101-------------" + lang_errors.full_messages.inspect
if params[:user]
  @user.state = params[:user][:state]
  success = success & @user.save
end
logger.debug "--------------------LANG_ERRORS-------------102----------" + lang_errors.full_messages.inspect
if lang_errors.full_messages.empty?

@user object adds errors to the lang_errors variable in the update_lanugages method. when I perform a save on the @user object I lose the errors that were initially stored in the lang_errors variable.

Though what I am attempting to do would be more of a hack (which does not seem to be working). I would like to understand why the variable values are washed out. I understand pass by reference so I would like to know how the value can be held in that variable without being washed out.

link|improve this question

75% accept rate
I also notice that I am able to retain that value in a cloned object – Sid Dec 9 '09 at 7:13
feedback

3 Answers

up vote 23 down vote accepted

Ruby doesn't have any concept of passing a value around. Variables are always references to objects. In order to get a object that won't change out from under you, you need to dup or clone the object you're passed, thus giving an object that nobody else has a reference to. (Even this isn't bulletproof, though — both of the standard cloning methods do a shallow copy, so the instance variables of the clone still point to the same objects that the originals did. If the objects referenced by the ivars mutate, that will still show up in the copy, since it's referencing the same objects.)

link|improve this answer
Thank you. I'm still not sure if this is completely a good feature. Wouldn't an explicit method to pass by value be helpful though everything is an object. Another thing is I find that the cloned copy has a different object_id so doesn't that make it completely indifferent to the original object though it may hold the values of the original object or are my fundamentals totally flawed here? – Sid Dec 9 '09 at 8:00
3  
Yes, the clone is a completely independent object. As for pass-by-value, it's not really compatible with pure OO, where "values" don't exist except as object state. The closest you could get is something like Objective-C's bycopy type modifier that tells the runtime to make a copy behind the scenes. That does sound useful. – Chuck Dec 9 '09 at 8:39
Thanks chuck that what was really useful.Thanks again – Sid Dec 9 '09 at 12:41
1  
Ruby is pass-by-value. No ifs. No buts. No exceptions. If you want to know whether Ruby (or any other language) is pass-by-reference or pass-by-value, just try it out: def foo(bar) bar = 'reference' end; baz = 'value'; foo(baz); puts "Ruby is pass-by-#{baz}". – Jörg W Mittag Apr 26 at 9:26
1  
@JörgWMittag: Yeah, but the OP's confusion is actually not pass-by-value or pass-by-reference in the strict CS sense of the words. What he was missing is that the "values" you're passing are references. I felt that just saying "It's pass-by-value" would be pedantic and do the OP a disservice, as that isn't actually what he meant. But thanks for the clarification, because it is important for future readers and I should have included it. (I'm always torn between including more info and not confusing people.) – Chuck Apr 26 at 14:53
feedback

Ruby parameters are passed by value, where that value is a reference. Therefore, reassignment of parameter variables (bar, in the example below) has no effect on the argument variables passed into the function but can lead to permanent object mutation.

def foo!(bar)
  bar.merge!(pass_by: 'reference-by-value')
  bar = { pass_by: 'reference' }
end

bar = { pass_by: 'value' }
foo!(bar)

puts "Ruby is pass-by-#{bar[:pass_by]}"
# => "Ruby is pass-by-reference-by-value"
link|improve this answer
feedback

Is Ruby pass by reference or by value?

Ruby is pass-by-value. Always. No exceptions. No ifs. No buts.

Here is a simple program which demonstrates that fact:

def foo(bar)
  bar = 'reference'
end

baz = 'value'

foo(baz)

puts "Ruby is pass-by-#{baz}"
# Ruby is pass-by-value
link|improve this answer
Unfortunately, that's not true. See my comment below (I can't post here.) The mistake here is that the local parameter is reassigned (pointed to a new place in memory), but the object itself would have been permanently modified in-place if you had mutated it. – David J. May 22 at 5:10
@DavidJ.: "The mistake here is that the local parameter is reassigned (pointed to a new place in memory)" – That's not a mistake, that's the definition of pass-by-value. If Ruby were pass-by-reference, then reassignment to the local method argument binding in the callee would also have reassigned the local variable binding in the caller. Which it didn't. Ergo, Ruby is pass-by-value. The fact that if you change a mutable value, the value changes is completely irrelevant, that's just how mutable state works. Ruby is not a pure functional language. – Jörg W Mittag May 22 at 11:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.