24
votes
7answers
8k views
Structure Vs Class in C#
When you create an instance of a class with the new operator, memory gets allocated on the heap. When you create an instance of a struct with the new operator where does the memory …
22
votes
5answers
7k views
Difference between ‘struct’ and ‘typedef struct’ in C++?
In C++, is there any difference between:
struct Foo { ... };
and
typedef struct { ... } Foo;
19
votes
12answers
2k views
What’s the difference between struct and class in .Net?
I'm looking for a clear, concise and accurate answer.
Ideally as the actual answer, although links to good explanations welcome.
18
votes
8answers
447 views
Immutability of structs
I read it in lots of places including here that it's better to make structs as immutable.
What's the reason behind this? I see lots of Microsoft-created structs that are mutable, …
18
votes
6answers
526 views
Struct vs Class for long lived objects
When you need to have very small objects, say that contains 2 float property, and you will have millions of them that aren't gonna be "destroyed" right away, are structs a better c …
16
votes
19answers
889 views
C# Structs - real life examples?
There are any number of questions here on SO dealing with the differences between Structs and Classes in C#, and when to use one or the other. (The one sentence answer: use struct …
14
votes
18answers
893 views
How much functionality is “acceptable” for a C++ struct?
My first post so please go easy on me!
I know that there's no real difference between structs and classes in C++, but a lot of people including me use a struct or class to show in …
14
votes
7answers
2k views
Why can’t I define a default constructor for a struct in .NET
In .NET a value type (C# struct) can't have a constructor with no parameters. According to this post this is mandated by the CLI spec. What happes is that for every value-type a de …
13
votes
12answers
686 views
Why don’t structs support inheritance?
I know that structs in .NET do not support inheritance, but its not exactly clear why they are limited in this way.
What technical reason prevents structs from inheriting from oth …
12
votes
4answers
246 views
Why are .NET value types sealed?
It's not possible to inherit from a C# struct. It's not obvious to me why this is:
Clearly you can't have a reference type that inherits from a value type; this wouldn't work
It …
12
votes
7answers
2k views
Difference between a Structure and a Union in C
Is there any good example to give the difference between a 'struct' and a 'union'?
Basically I know that struct uses all the memory of its member and union uses the largest members …
12
votes
2answers
602 views
C# : How does this work : Unit myUnit = 5;
I just noticed that you can do this in C#:
Unit myUnit = 5;
instead of having to do this:
Unit myUnit = new Unit(5);
Does anyone know how I can achieve this with my own struc …
12
votes
24answers
3k views
When should you use a class vs a struct in C++?
In what scenarios is it better to use a struct vs a class in C++?
11
votes
13answers
821 views
When are structs the answer?
I'm doing a raytracer hobby project, and originally I was using structs for my Vector and Ray objects, and I thought a raytracer was the perfect situation to use them: you create m …
11
votes
5answers
3k views
C : pointer to struct in the struct definition
How can i have a pointer to the next struct in the definition of this struct? :
typedef struct A {
int a;
int b;
A* next;
} A;
this is how i first wrote it but it does not work …
