Tagged Questions
A keyword in the C family of languages for declaring a structured composite data type.
100
votes
7answers
29k 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 get allocated, on ...
91
votes
5answers
53k views
Difference between 'struct' and 'typedef struct' in C++?
In C++, is there any difference between:
struct Foo { ... };
and
typedef struct { ... } Foo;
71
votes
14answers
25k 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.
64
votes
5answers
2k views
Why declare a struct that only contains an array in C?
I came across some code containing the following:
struct ABC {
unsigned long array[MAX];
} abc;
When does it make sense to use a declaration like this?
63
votes
25answers
20k 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++?
57
votes
10answers
6k views
Why are mutable structs evil?
Following the discussions here on SO I already read several times the remark that mutable structs are evil (like in the answer to this question).
What's the actual problem with mutability and ...
42
votes
5answers
1k views
Why is this implemented as a struct?
In System.Data.Linq, EntitySet<T> uses a couple of ItemList<T> structs which look like this:
internal struct ItemList<T> where T : class
{
private T[] items;
private int ...
40
votes
16answers
10k views
What are the differences between struct and class in C++
This question was already asked in the context of C#/.Net.
Now I'd like to learn the differences between a struct and a class in C++. Please discuss the technical differences as well as reasons for ...
38
votes
6answers
959 views
C# 'is' type check on struct - odd .NET 4.0 x86 optimization behavior
Update: I have filed a bug report with Microsoft Connect, please vote for it!
Update 2: Microsoft have marked the bug report as fixed
Posted by Microsoft on 18/08/2010 at 17:25
This bug will ...
37
votes
7answers
1k views
Why does C have a distinction between -> and .?
OK, this is of no serious consequence, but it's been bugging me for a
while: Is there a reason for the distinction between the -> and . operators?
Of course, the current rule is that . acts on a ...
36
votes
4answers
996 views
Why does C++ support memberwise assignment of arrays within structs, but not generally?
I understand that memberwise assignment of arrays is not supported, such that the following will not work:
int num1[3] = {1,2,3};
int num2[3];
num2 = num1; // "error: invalid array assignment"
I ...
35
votes
6answers
80k views
What does this error mean: “error: expected specifier-qualifier-list before 'type_name'”?
I'm a bit new to working with c/c++, so sorry if this is a dumb question. I've been working on the Cell processor and I'm trying to create a struct that will hold an spe_context_ptr_t, which will be ...
34
votes
17answers
59k views
Struct like objects in Java
Is it completely against the Java way to create struct like objects?
class SomeData1 {
public int x;
public int y;
}
I can see a class with accessors and mutators being more Java like.
...
33
votes
9answers
42k views
Why should we typedef a struct so often in C?
I have seen many programs consisting of structures like the one below
typedef struct
{
int i;
char k;
} elem;
elem user;
I have seen this many times. Why is it needed so often? Any specific ...
33
votes
7answers
16k views
How do you compare structs for equality in C?
How do you compare two instances of structs for equality in standard C?
32
votes
7answers
505 views
Why doesn't the CLR always call value type constructors
I have a question concerning type constructors within a Value type. This question was inspired by something that Jeffrey Richter wrote in CLR via C# 3rd ed, he says (on page 195 - chapter 8) that you ...
31
votes
8answers
3k views
Why is there no RAII in .NET?
Being primarily a C++ developer the absence of RAII (Resource Acquisition Is Initialization) in Java and .NET has always bothered me. The fact that the onus of cleaning up is moved from the class ...
29
votes
7answers
18k 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 memory space. Is ...
29
votes
7answers
6k 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 default constructor is ...
26
votes
9answers
4k views
typedef struct vs struct definitions
I'm a beginner with C programming, but I was wondering what the difference was between the using typedef when defining a structure versus not using typedef. It seems to my like there's really no ...
26
votes
20answers
3k views
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 structs if you need value ...
26
votes
9answers
23k views
C-like structures in Python
Is there a way to conveniently define a C-like structure in Python? I'm tired of writing stuff like:
class MyStruct():
def __init__(self, field1, field2, field3)
self.field1 = field1
...
24
votes
12answers
4k 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 other structs?
23
votes
5answers
1k views
Initializing structs in C++
As an addendum to this question, what is going on here:
#include <string>
using namespace std;
struct A {
string s;
};
int main() {
A a = {0};
}
Obviously, you can't set a ...
23
votes
5answers
1k views
Why are public fields faster than properties?
I was poking around in XNA and saw that the Vector3 class in it was using public fields instead of properties. I tried a quick benchmark and found that, for a struct the difference is quite dramatic ...
23
votes
10answers
3k views
Immutability of structs [closed]
Possible Duplicate:
Why are mutable structs evil?
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 ...
23
votes
1answer
2k views
Why is it necessary to call :this() on a struct to use automatic properties in c#?
If I define a struct in C# using automatic properties like this:
public struct Address
{
public Address(string line1, string line2, string city, string state, string zip)
{
Line1 = ...
22
votes
6answers
6k views
Ruby: Struct vs OpenStruct
In general, what are the advantages and disadvantages of using an OpenStruct as compared to a Struct? What type of general use cases would fit each of these?
21
votes
13answers
3k 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 millions of them, ...
21
votes
4answers
33k views
Initializing an Array of Structs in C#
How can I initialize an const / static array of structs as clearly as possible?
class SomeClass
{
struct MyStruct
{
public string label;
public int id;
};
const ...
20
votes
6answers
495 views
Convienient C++ struct initialisation
I'm trying to find a convenient way to initialise 'pod' C++ structs. Now, consider the following struct:
struct FooBar {
int foo;
float bar;
};
// just to make all examples work in C and C++:
...
19
votes
4answers
828 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 doesn't sound ...
18
votes
1answer
1k views
Why can I assign structs but not compare them
Even though I am a long time C programmer, I only recently learned that one can directly assign structure variables to one another instead of using memcpy:
struct MyStruct a,b;
...
a = b; /* implicit ...
17
votes
6answers
741 views
Comparing structs to null [closed]
Possible Duplicate:
C# okay with comparing value types to null
I was working on a windows app in a multithreaded environment and would sometimes get the exception "Invoke or BeginInvoke ...
16
votes
6answers
438 views
Naming Conflict in C++: How to access a struct member called “class”
I came across a naming problem while working with the xlib library:
I'm using a struct which has a member called "class". I assume this library is mostly used in plain C programs. So there's no ...
16
votes
3answers
505 views
What's the syntactically proper way to declare a C struct?
I've seen C structs declared several different ways before. Why is that and what, if anything, does each do different?
For example:
struct foo {
short a;
int b;
float c;
};
typedef struct {
...
16
votes
19answers
1k 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 intent - structs for ...
16
votes
5answers
6k views
What is the correct way to initialize a very large struct?
In our code we used to have something like this:
*(controller->bigstruct) = ( struct bigstruct ){ 0 };
This used to work great, and then we upgraded versions of GCC and suddenly started ...
16
votes
9answers
21k views
Read binary file into a struct C#
I'm trying to read binary data using C#. I have all information about the layout of the data in the files I want to read. I'm able to read the data "chunk by chunk", i.e. getting the first 40 bytes of ...
15
votes
7answers
255 views
Should I use a struct or a class to represent a Lat/Lng coordinate?
I am working a with a geo-coding API and need to represent the coordinate of a returned point as a Latitude / Longitude pair. However, I am unsure whether to use a struct or a class for this. My ...
15
votes
4answers
653 views
Packing 4 Integers as ONE BYTE?
I have four integers {a, b, c, d} that can have the following range of values:
a - {0 or 1} (1 bit)
b - {0 or 1} (1 bit)
c - {0, 1, 2, ..., 7} (3 bits)
d - {0, 1, 2, ..., 7} (3 bits)
...
15
votes
5answers
553 views
C# struct new StructType() vs default(StructType)
This could be a silly question but I couldn't find any information on this.
Say I have a struc
public struct Foo
{
...
}
Is there any difference between
Foo foo = new Foo();
and
Foo foo = ...
15
votes
4answers
397 views
Why does capturing a mutable struct variable inside a closure within a using statement change its local behavior?
Update: Well, now I've gone and done it: I filed a bug report with Microsoft about this, as I seriously doubt that it is correct behavior. That said, I'm still not 100% sure what to believe regarding ...
15
votes
6answers
536 views
Real thing about “->” and “.”
I always wanted to know what is the real thing difference of how the compiler see a pointer to a struct (in C suppose) and a struct itself.
struct person p;
struct person *pp;
pp->age, I always ...
15
votes
3answers
2k views
Automatic Properties and Structures Don't Mix?
Kicking around some small structures while answering this post, I came across the following unexpectedly:
The following structure, using an int field is perfectly legal:
struct MyStruct
{
...
14
votes
5answers
6k views
Default value of an Objective-C struct and how to test
I'm trying to test if a property has been set yet. I know that with objects that I've got:
CGRect ppGoalFrame;
LocalPlaySetup *localPlaySetup;
and I can test
if (localPlaySetup == nil)
but if I ...
14
votes
5answers
941 views
C#. Struct design. Why 16 byte is recommended size?
I read Cwalina book (recommendations on development and design of .NET apps).
He says that good designed struct has to be less than 16 bytes in size (for performance purpose).
My questions is - why ...
14
votes
10answers
3k views
Why isn't pass struct by reference a common optimization?
Up until today, I had always thought that decent compilers automatically convert struct pass-by-value to pass-by-reference if the struct is large enough that the latter would be faster. To the best ...
14
votes
7answers
7k views
Structure of a C++ Object in Memory Vs a Struct
If I have a class as follows
class Example_Class
{
private:
int x;
int y;
public:
Example_Class()
{
x = 8;
y = ...
13
votes
3answers
353 views
How are the “primitive” types defined non-recursively?
Since a struct in C# consists of the bits of its members, you cannot have a value type T which includes any T fields:
// Struct member 'T.m_field' of type 'T' causes a cycle in the struct layout
...