4
votes
2answers
697 views
What is the point of clog?
I've been wondering, what is the point of clog? As near as I can tell, clog is the same as cerr but with buffering so it is more efficient. Usually stderr is the same as stdout, so clog is the same …
1
vote
C++ Practice Problems
I always used to write a Mandelbrot and Julia fractal generator when I first started learning a new platform or framewor …
1
vote
What is a smart pointer and when should I use one?
A smart pointer is like a regular (typed) pointer, like "char*", except when the pointer itself goes out of scope then what it points to is deleted as well. You can use it like you would a regular …
1
vote
Calling a C++ function pointer on a specific object instance
Unfortunately, the EventFunction type cannot point to a function of B, because it is not the correct type. You could make it the correct type, but that probably isn't really the solution you want: …
3
votes
Dynamic Arrays
Or, if you don't want to use STL or another dynamic thing, you can just create the array with the correct size from the beginning: x = new double[2];
Of course the problem there is how big …
2
votes
Dynamic Memory Allocation Failure Recovery
There are lots of good things in the other answers, but I did think it worth adding that if all the threads get in a similar loop, then the program will be deadlocked.
The "correct" answer …
12
votes
Question on multiple inheritance, virtual base classes, and object size in C++
Let's look at the class layout of the two cases.
Without the virtual, you have two base classes ("X" and "Y") with an integer each, and each of those classes have integrated into them a "Ba …
3
votes
Learning Algorithm and Saving Data in Software
I think that would depend a bit on the problem domain. You might want to store learned "facts" or "relationships" in a DB so that they can be easily searched. If you are training a neural network, …
13
votes
Stack,Static and Heap in C++
A similar question was asked, but it didn't ask about statics.
Summary of what static, heap, an …
0
votes
C++ Accessing the Heap
Why do you want it on the heap? If you add it as part of the class then it will be in the same place the class is, possibly on the stack or in global memory. Perhaps you want to have a variable siz …
0
votes
How to check the length of an input? (C++)
You can check the length of your NULL terminated string that getline returns by using:
int len = strlen(lvlinput);
This works because …
4
votes
Is there a tool that enables me to insert one line of code into all functions and methods in a C++-source file?
I would suggest using the gcc flag "-finstrument-functions". Ba …
0
votes
Static Pointer to Dynamically allocated array.
There are several possibilties with various advantages and disadvantages. I don't know what the table contains, so I'll call it an Entry.
If you just want the memory to be sure …
