1
vote
4answers
77 views
C++ bool array as bitfield?
Hi!
let's say i need to store 8 bools in a struct, but i want to use for them only 1 byte together, then i could do something like this:
struct myStruct {
bool b1:1;
bool …
12
votes
4answers
199 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 …
0
votes
3answers
56 views
Nested struct variable initialization
How can I initialize this nested struct in C?
typedef struct _s0 {
int size;
double * elems;
}StructInner ;
typedef struct _s1 {
StructInner a, b, c, d, e;
long f;
…
4
votes
4answers
95 views
Does GCC’s __attribute__((__packed__))…?
Purpose
I am writing a network program in C (specifically gnu89) and I would like to simplify things by reinterpreting a certain struct X as big array of bytes (a.k.a. char), send …
-1
votes
0answers
27 views
Structure alignment
for 64 bit (C++) application, natural alignment is better or 8 byte alignment?
Thnx
0
votes
1answer
38 views
passing primitive or struct type as function argument
I'm trying to write some reasonably generic networking code. I have several kinds of packets, each represented by a different struct. The function where all my sending occurs loo …
1
vote
6answers
268 views
Why does my object take up 64 bytes and not 32?
I have a class that goes like this:
class myType
{
union {
float data[4];
other_vector4_type v
} ;
typedef union {
float data[4];
other_vector4_type …
1
vote
6answers
182 views
Access variables in C structures
Dear all!
I am not too familiar with C programming, and I have to do few modifications on a source code, here is the problem:
I have this in a header file :
typedef struct word …
0
votes
6answers
99 views
Sending struct over TCP (C-programming)
Hi again!
I have a client and server program where I want to send an entire struct from the client and then output the struct member "ID" on the server.
I have done all the conne …
2
votes
3answers
102 views
Is there an existing Python class that can hold any user attributes?
I can use this when I need multiple objects with different attributes:
class struct(object):
def __init__(self,*args,**kwargs):
for key,val in kwargs.items():
se …
0
votes
2answers
41 views
Scheme, getting the pointer from pointed struct
Assume I have a such struct:
(define-struct node (value next))
;and making 2 nodes, parent pointing to child as next.
(define child (make-node 2 null))
(define parent (make-node …
1
vote
9answers
202 views
Inserting leading zeros into an integer
I have a function in C which generates a number of hours from a rtc peripheral, which I then want to fill an array within a struct object. The array is set up to take 5 digits, bu …
4
votes
4answers
194 views
Struct initialization of the C/C++ programming language?
I could do struct initialization with code:
struct struct_type_id struct_name_id = { value1, value2, value3 };
but could not with:
struct struct_type_id struct_name_id;
struct_ …
0
votes
11answers
228 views
Initialization of reference member requires a temporary variable C++
struct Div
{
int i;
int j;
};
class A
{
public:
A();
Div& divs;
};
In my constructor definition, I have the following
A::A() : divs(N …
5
votes
9answers
250 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 the …
