vote up 2 vote down star
1

Common question but I could use an "english" explanation..

Ist it like Java where

Cat myCat

actually is a pointer to Cat?

Should I really create copy constructors in c#?

flag

6 Answers

vote up 5 vote down check

As @rstevens answered, if it is a class, myCat is a reference. But if you pass myCat to a method call, then the reference itself is passed by value - i.e. the parameter itself will reference the same object, but it's a completely new reference, so if you assign it to null, or create a new object, the old myCat reference will still point to the original object.

SomeMethod(myCat);

void SomeMethod(Cat cat)
{
    cat.Miau(); //will make the original myCat object to miau
    cat = null; //only cat is set to null, myCat still points to the original object
}

Jon Skeet has a good article about it.

link|flag
vote up 4 vote down

Remember that a pointer is not exactly the same as a reference, but you can just about think of it that way if you want.

I swear I saw another SO question on this not 10 minutes ago, but I can't find the link now. In the other question I saw, they were talking about passing arguments by ref vs by value, and it came down to this:

By default in .Net, you don't pass objects by reference. You pass references to objects by value.

The difference is subtle but important, especially if, for example, you want to assign to your passed object in the method.

link|flag
You should start that quote with By default, in .Net ... – Tom Lokhorst Jan 12 '09 at 21:20
duly noted and applied. – Joel Coehoorn Jan 12 '09 at 22:05
vote up 1 vote down

If you delacred Cat as

class Cat {...}

then it is.

If you delcared Cat as

struct Cat {...}

then your variable "is" the structure itself.

This is the difference between reference types and value types in .Net.

link|flag
vote up 1 vote down

When in doubt seek out Jon Skeet.

He has a great article on it. It can be found here.

link|flag
vote up 0 vote down

Yes, it's about pointers but not really... The thing that messed me up originally is that it isn't really about about protecting your variable from changes within the method. If you change the object within the method, those changes are visible to the external methods regardless of whether it is passed in "ref" or not.

The difference (as I understand it) is whether the variable you send in has its reference updated coming back out if you change the object that variable references. So given this method

public void DoSomething(ref CoolShades glasses)
{
    glasses.Vendor = "Ray Ban";
    glasses = new CoolShades();
}

the variable you passed in as a parameter now contains a reference to the new CoolShades rather than whatever object it referenced before. The original parameter object's Vendor property will be changed to "Ray Ban" regardless of whether you passed the parameter ref or not.

link|flag
You mind if I edit your code for a more complete sample? – Joel Coehoorn Jan 12 '09 at 21:30
vote up -1 vote down

I understand we are passing by value, but now my question is are we passing by pointer value or full copy of the object?

if its the latter, isnt that too expensive performance/memory wise? Is that when you have to use the ref keyword?

link|flag
Better delete this, and edit your original question. – Sunny Jan 12 '09 at 21:13
Definitely not a full copy. You are passing a copy of the reference. – Joel Coehoorn Jan 12 '09 at 21:28

Your Answer

Get an OpenID
or

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