1
vote
4answers
45 views
how many strings in a const char* str[] ?
const static char *g_szTestDataFiles[] = {
".\\TestData\\file1.txt",
".\\TestData\\file2.txt",
".\\TestData\\file3.txt",
".\\TestData\\file4.txt",
".\\TestData\ …
1
vote
3answers
139 views
Type Casting C++
see the following code:
void simple_dynamic_casts( )
{
AB ab;
B* bp = (B*)&ab; // cast needed to break protection
A* ap = &ab; // public derivation, no c …
0
votes
2answers
46 views
Templates and nested classes/structures
I have a simple container :
template <class nodeType> list {
public:
struct node {
nodeType info;
node* next;
};
//...
};
…
0
votes
2answers
39 views
How come we pass the linking stage and still miss symbols ? ?
Hi All
And thanks in advance.
operating system: AIX 5.3.
compiler: xlC_r
build system is: "Unix Makefiles"
our application uses several static (.a) libs and several shared (.so …
2
votes
4answers
84 views
Bitflag enums in C++
Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting.
The acc …
0
votes
3answers
92 views
C++: pass variable by value
This is the situation:
int f(int a){
...
g(a);
...
}
void g(int a){...}
The problem is that the compiler says that there is no matching function for call to g(int&a …
0
votes
2answers
40 views
Problem with priority_queue - Writing memory after heap
Hello again,
I am trying to use priority_queue, and program constantly fails with error message HEAP CORRUPTION DETECTED.
here are the snippets:
class CQueue { ...
…
4
votes
1answer
39 views
Rotating coordinates around an axis
I'm representing a shape as a set of coordinates in 3D, I'm trying to rotate the whole object around an axis (In this case the Z axis, but I'd like to rotate around all three once …
1
vote
7answers
105 views
What are your favourite Java features? [closed]
Why do you like Java so much? What are those features that make it practically better than C or even C++?
1
vote
5answers
112 views
Fastest way to write large STL vector to file using STL
I have a large vector (10^9 elements) of chars, and I was wondering what is the fastest way to write such vector to a file. So far I've been using next code:
vector<char> vs …
0
votes
3answers
50 views
undefined symbols “vtable for …” and “typeinfo for…” ?
nearly the final step but still some stange erros....
bash-3.2$ make
g++ -Wall -c -g Myworld.cc
g++ -Wall -g solvePlanningProblem.o Position.o AStarNode.o PRM.o PRMNode.o World.o …
1
vote
3answers
100 views
Overloading operator >
Hello,
In my homework, I have to design a class Message; among other attributes, it has attribute "priority" (main goal is to implement priority queue).
As in container I must c …
3
votes
3answers
63 views
Tool for program statistics
Is there a tool which is able to parse my source code (fortran, C or C++) and return statistics such as the number of loops, the average loop size, the number of functions, the num …
0
votes
1answer
71 views
What are the best RSS feeds for C++ ?
What are the best RSS feeds for C++ ?
0
votes
5answers
58 views
undefined symbols ld: symbol not found
Everything is working except, this undefined symbols error:
bash-3.2$ make
g++ -Wall -g solvePlanningProblem.o Position.o AStarNode.o PRM.o PRMNode.o Worl.o SingleCircleWorld.o My …
