Tagged Questions
6
votes
4answers
209 views
C++ Variables - declare and define. Inheritance
Let's have a C++ object A. There are two variables (VAR1 and VAR2) in A accessible to its children.
Object B extends A and has one private variable VAR3 it can also access VAR1 and VAR2. Each instance ...
5
votes
4answers
566 views
How to assign char array in struct inline?
I'm trying to do something like this:
struct SomeStruct {
const char *bytes;
const char *desc;
};
SomeStruct example = { { 0x10, 0x11, 0x12, 0x13 }, "10-13" };
Why isn't this working?
2
votes
2answers
61 views
How to declare struct A that contains instances of class B, where class B has functions that return struct A?
I tried my best to describe the goal in the title, but here it is in code:
struct Bar {
Foo one;
Foo two;
}
class Foo {
Bar function();
}
I know this won't work, but how would I ...
2
votes
3answers
93 views
Non member function can be declared multiple times while member function can only be declared once?
Non mumber function can be delcared multiple times while member function can only be declared once? Is this right ? My example seems saying yes.
But Why ?
class Base{
public:
int foo(int i);
...
1
vote
3answers
451 views
Avoiding declaring private functions in class header files (C++)
(In C++) I have a class whose structure is declared in a header file. That header file is included in lots of source files, such that when I edit it I need to recompile lots of files.
The class has a ...
1
vote
5answers
387 views
How is this private variable “not declared in this scope”?
I'm currently trying to learn more about object oriented design in C++ (familiar with Java) and am running into some walls. The project I am trying to put together to learn these principles in a game ...
1
vote
1answer
216 views
How to declare ULARGE_INTEGER in c#?
Based upon this question How to declarate LARGE_INTEGER in C# with answer of:
[StructLayout(LayoutKind.Absolute, Size=8)]
struct LARGE_INTEGER
{
[FieldOffset(0)]public Int64 QuadPart;
...
1
vote
5answers
2k views
variable-size type declared outside of any function
when declaring the two dimensional array
int random[height][width];
and then using it in a function
void populate(int random[height][width], int x, int y)
gives the error variable-size type ...
0
votes
1answer
126 views
what's the type of 'struct random_data* buf'? [closed]
I'd like to have an instance variable of "struct random_data*" which are used in
int random_r(struct random_data *buf, int32_t *result);
I've tried declaring as
"struct random_data* ...