vote up 2 vote down star
1

Possible Duplicate:
C#: What is the use of “ref” for Reference-type variables?

if objects are passed by reference in c#, what is ref good for then?

Duplicated here

flag

22% accept rate

closed as exact duplicate by Joseph, Matthew Scharley, Randolpho, Lucero, Earwicker Jul 7 at 13:32

12 Answers

vote up 8 vote down

This is one of the greatest misconceptions in C# (and possibly in programming in general). By default, parameters are not passed by reference in C# but by value. When you think of a reference type being passed as a parameter, by default, the reference is passed by value.

Microsoft has a good article on the subject.

link|flag
vote up 2 vote down

Primitive types (or value types) are not passed by reference. Since int, double, etc... sit on the stack they are passed by value not by reference.

link|flag
What does this have to do with the question? Am I missing something? – Joseph Jul 7 at 13:29
All types in C# are objects. The parent asked what is the point if all objects are passed by reference. I am pointing out that all objects are not passed by reference. – William Edmondson Jul 7 at 13:32
4  
Not only irrelevant, but misleading... implies that ref types (which do NOT sit on stack), are not passed by value... which is wrong, they are... Everything is passed by value by default. including Reference types. Because a reference type contains a reference (a pointer/address) doesn't change that. The pointer/address is stored on the stack, and is copied to the stack frame of the callee, just like a value type's value would be. – Charles Bretana Jul 7 at 13:33
Specifically the question was "what is ref good for then?". The answer is "to pass value types by reference." – William Edmondson Jul 7 at 13:33
Misleading explanation though. Charles is right, objects are passed by value by default. ref is just used to change that default behaviour. – Daniel Daranas Jul 7 at 13:35
show 2 more comments
vote up 0 vote down

By default objects are passed in by value, not reference. ref keyword will override that default behaviour.

link|flag
vote up 0 vote down

You're mistaken, objects are passed by value, meaning that a a copy of the pointer is passed to methods when you pass objects by value.

On the contrary, passing by reference actually passes the address of whatever object you send to another method. This has some interesting consequences, for example it allows methods on top of the stack to fiddle with values lower down in the stack. In fact, Int32.TryParse(string x, out int y) uses this principle to mutate variables in different stack frames.

Both objects and primitives are passed by value, unless specified otherwise. Unfortunately, Microsoft uses the terminology "reference type" and "value type", causing confusion with "pass by reference" and "pass by value" for years. A reference and value types mean heap and stack allocated respectively, it has nothing to do with the phrases "pass by reference" and "pass by value".

link|flag
There's a difference between ref and out parameters though. – Matthew Scharley Jul 7 at 13:31
@Matthew: no there isn't, they both pass by reference. The semantic difference between the two is implemented in the C# compiler, not in the CLR. Please read the documentation the MSDN documentation: msdn.microsoft.com/en-us/library/… – Juliet Jul 7 at 14:43
vote up 0 vote down

If you pass reference type, copy of the reference is passed. If you user ref keyword you pass just that reference.

link|flag
vote up 0 vote down

It passes the object reference by reference. This allows you to alter the parameter to point to a different object. It's analogous to a double pointer in C.

link|flag
vote up 0 vote down

Objects are passed by reference only in the sense that a function has a reference to the same object in memory. Therefore something like this will change the original object:

void test(MyObject a)
{
    a.Property = "value";
}

However, the reference itself is just a copy, so this will not change the value:

void test(MyObject a)
{
  a = new MyObject();
}

But with the addition of the ref keyword, the reference is also shared. Now, the argument is completely replaced:

void test(ref MyObject a)
{
    a = new MyObject();
}
link|flag
vote up 0 vote down

All objects are passed by value in C#. The value of the object just happens to be a COPY of the reference.

So for example:

void MyFunc(Object test)
{
    test = null;
}

// ...

Object test = new Object();
MyFunc(test);

Console.WriteLine(test == null) //will print false

That is because you were working with a copy of the reference.

link|flag
vote up 0 vote down

if objects are passed by reference in c#, what is ref good for then?

Passing the reference by reference, of course. ;)

Take the following code:

void foo(string s){
 s = "foo";
}

void bar() {
string s = "bar;
  foo(s);
  // s will still equal "bar"
}

When foo is called, a copy of the reference to s is passed. So when that is made to point to a new string, it doesn't affect the original reference stored in bar.

With ref:

void foo(ref string s){
 s = "foo";
}

void bar() {
string s = "bar;
  foo(ref s);
  // s will equal "foo"
}

We pass the actual reference to foo, so when foo makes it point to a new string, the original reference is also affected.

Or in other words, parameters are normally passed by value, not reference, in C#. For reference types, the value in question is a reference, but it is still passed by value - it is copied, so you end up with two different references to the object.

link|flag
vote up 0 vote down

In addition to what Blixt said, it will also pass a reference by reference

class Dog {
  public Dog(string name) {}
}

void Walk(Dog dog)
{
  dog = new Dog("Spot");
}

void Test(ref Dog dog)
{
  dog = new Dog("Rover");
}

void test()
{
  Dog dog = new Dog("Fido");
  Walk(dog);
  //my dog instance is still Fido, not Spot
  Test(ref dog);
  //my dog instance is now Rover
}
link|flag
vote up 0 vote down

What is ref good for?

Interview questions, of course.

link|flag
vote up 0 vote down

Objects are passed by value. what you hold is a reference to somethong. You pass a copy of that reference. Consider this.

    [Test]
    public void Ref()
    {
        object myObject = new object();
        object myOtherObject = myObject;
        Assert.AreEqual(myObject, myOtherObject);

        TestRef(Object);

        Assert.AreEqual(myObject, myOtherObject);
    }

    private void TestRef(ref object o)
    {
        o = new object();
    }

in this case updating the reference is not reflected outside the method call. If ref is used then the code looks like this:

    [Test]
    public void RefRef()
    {
        object myObject = new object();
        object myOtherObject = myObject;
        Assert.AreEqual(myObject, myOtherObject);

        TestRefRef(ref myObject);

        Assert.AreNotEqual(myObject, myOtherObject);
    }

    private void TestRefRef(ref object o)
    {
        o = new object();
    }

The pointer has been updated inside a method and passed out of that method.

link|flag

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