vote up 3 vote down star

What is the definition of a value class and reference class in C#?

How does this differ from a value type and reference type?

I ask this question because I read this in the MCTS Self-Paced Training Kit (Exam 70-536). Chapter 1, Lesson 1, Lesson review 4 :

You need to create a simple class or structure that contains only value types. You must create the class or structure so that it runs as efficiently as possible. You must be able to pass the class or structure to a procedure without concern that the procedure will modify it. Which of the following should you create?

A reference class

B reference structure

C value class

D value structure

Correct Answer: D

A Incorrect: You could create a reference class; however, it could be modified when passed to a procedure.

B Incorrect: You cannot create a reference structure.

C Incorrect: You could create a value class; however, structures tend to be more efficient.

D Correct: Value structures are typically the most efficient.

flag

Before you edited his question, he said "Value Class" and "Reference Class" as opposed to "type". He could be referencing something along these lines: icsi.berkeley.edu/~sather/Documentation/… where it says: "At a fundamental level: value classes define objects which, once created, never change their value. A variable of a value type may only be changed by re-assigning to that variable. When we wish to only modify some portion of a value class (one attribute, say), we are compelled to reassign the whole object"... Without a link to the article, who knows. – Jason Down Nov 2 at 1:13
1  
I didn't edited the question. Someone did it for me. It's a bad edition. I really mean "value CLASS" and "reference CLASS". – Dran Dane Nov 2 at 1:15
Yes, I realize it was George Stocker who edited your question. I was just pointing out that you may have meant exactly what you typed. Looks like you've just clarified that. – Jason Down Nov 2 at 1:16
1  
I know what is a value or reference type but i don't know what is a value or reference class. – Dran Dane Nov 2 at 1:17
1  
Updated the question. Given that I've never heard of 'value class' or 'reference class' in reference to C#, I was almost certain the OP made a mistake when posting. OP: Please include the reference for what you read; otherwise it comes across as a typographical error. – George Stocker Nov 2 at 1:23
show 3 more comments

7 Answers

vote up 3 vote down

See the overview on the subject, but seriously follow the msnd links and read the full Common Type system chapter of it. (You could also have asked in a comment in the first, question)

link|flag
vote up 2 vote down

Value types are passed by value, while reference types are passed by reference.

Edit: value/reference classes
There is no concept of a 'value class' or 'reference class' in C#, so asking for its definition is moot.

link|flag
2  
Perhaps if he gave us a link to the document to which he was referring... – Jason Down Nov 2 at 1:23
I added the document reference – Dran Dane Nov 2 at 1:47
Reference types are passed by value, but the reference is passed. This is a subtle but important distinction. – Wedge Nov 2 at 2:53
I see your point. The value-typed variables directly contain data, which is passed by value. Reference-typed variables contain a reference to the data, of which the reference is also passed by value. If you use ref or out, then the variables are passed by reference. – Joren Nov 2 at 8:26
vote up 0 vote down

Value types store the actual data while reference types store references to the data. Reference types are stored dynamically on the heap while value types are stored on the stack.

Value Types: http://msdn.microsoft.com/en-us/library/s1ax56ch.aspx Reference Types: http://msdn.microsoft.com/en-us/library/490f96s2.aspx

link|flag
2  
Not accurate. Value types that are fields of classes are stored on the heap among the rest of the object state. – zvolkov Nov 2 at 1:16
1  
blogs.msdn.com/ericlippert/archive/… – Joren Nov 2 at 1:16
yeah my explanation was a little overly simplistic – Jehud Nov 3 at 0:45
vote up 0 vote down

When you refer to a value type (that is, by using its name), you're talking about the place in memory where the data is. As such, value types can't be null because there's no way for the memory location to say "I don't represent anything." By default, you pass value types by value (that is, the object you pass in to methods doesn't change as a result of the method's execution).

When you use a reference type object, you're actually using a pointer in disguise. The name refers to a memory location, which then references a place in memory where the object actually lives. Hence you can assign null to a reference type, because they have a way of saying "I point to nowhere." Reference types also allow the object to be changed as a result of methods executing, so you can change myReferenceObject's properties by passing it into a method call.

link|flag
vote up 0 vote down

Reference types are passed to methods by reference and value types by value; in the latter case a method receives a copy of the variable and in the former it receives a reference to the original data. If you change your copy, the original does not change. If you change the original data you have a reference to, the data changes everywhere a reference to the data is changed. If a similar program to your C# program was created in C, generally reference types would be like data using pointers and value types would be normal data on the stack.

Numeric types, char, date, enumerations, and structures are all value types. Strings, arrays, delegates and classes (i.e., most things, really) are reference types.

link|flag
vote up 0 vote down

You may be thinking of C++/CLI which, unlike C#, allows the user to declare a "value class" or a "ref class." In C#, any class you declare will implicitly be a reference class - only built-in types, structs, and enums have value semantics. To read about value class in C++/CLI, look here: http://www.ddj.com/cpp/184401955

Value classes have very little functionality compared to ref classes, and are useful for "plain old data"; that is, data which has no identity. Since you're copying the data when you assign one to another, the system provides you with a default (and mandatory) copy constructor which simply copies the data over to the other object.

To convert a value class into a reference class (thereby putting it on the garbage-collected heap) you can "box" it.

To decide whether a class you are writing is one or the other, ask yourself whether it has an identity. That usually means that it has some state, or has an identifier or a name, or a notion of its own context (for example a node pointing to nearby nodes).

If it doesn't, it's probably a value class.

In C#, however, value classes are declared as "structs".

link|flag
vote up 0 vote down

If my understanding is correct, you can accomplish a "value class", or immutable class, through the use of readonly member variables initialized through the constructor. Once created, these cannot be changed.

link|flag

Your Answer

Get an OpenID
or

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