1
vote
0answers
95 views
Underused features of C++ [closed]
Possible Duplicates:
Hidden Features of C++?
Hidden Features of Java
What are the underused features of C++ ?
4
votes
3answers
193 views
[C++] Validity of int * array = new int [size]();
int * array = new int [size]();
The operator () allow to set all values of array to 0 (all bits to 0). it's called value-initialization.
Since which version of g++ is it valid …
1
vote
4answers
125 views
C++ Constructor and Destructor
I'm getting some errors when compiling my program. They relate to the constructor and destructor of my class Instruction.
Errors are:
/tmp/ccSWO7VW.o: In function `Instruction::I …
0
votes
4answers
63 views
<list> retreving items problem with iterator
I have a list of type Instruction*. Instruction is a class that I made. This class has a function called execute().
I create a list of Instruction*
list<Instruction*> instL …
2
votes
6answers
223 views
“g++” and “c++” compiler
Hi,
I just found on my Ubuntu, there are two different C++ compiler: /usr/bin/g++ and /usr/bin/c++. I am not familiar with the latter, but man c++ just jumps to the manpage of gcc …
0
votes
2answers
24 views
[ linux, g++, linking]: library is in ldconf cache and Links Manually, but not by default
Hi all,
This appears similar to an earlier post: http://stackoverflow.com/questions/335928/linux-gcc-linking-ld-cannot-find-a-library-that-exists But to the best of my knowledge, …
2
votes
1answer
41 views
problem w/ linking static function g++
Hi-
I am trying to build a small program and I have my own library libfoo. I have a camera class that is calling a static function from my Vector3 class (i.e. crossProduct). My …
0
votes
1answer
109 views
What are the best RSS feeds for C++ ?
What are the best RSS feeds for C++ ?
0
votes
1answer
173 views
What’s the strangest corner case you’ve seen in C/C++ ? [closed]
What’s the strangest corner case you’ve seen in C/C++ ?
2
votes
4answers
198 views
C++ Newbie in Linker Hell
Hello all,
Using g++ and having linker errors. I have a simple program in split into two modules: main.cpp and Dice.h Dice.cpp.
main.cpp:
#include <iostream>
#include "Di …
1
vote
12answers
305 views
Can you give an example of stack overflow in C++?
Can you give an example of stack overflow in C++? Other than the recursive case:
void foo() { foo(); }
1
vote
1answer
41 views
No rule to make target … libm.a
I get the following error when I try to compile my app:
*** No rule to make target `/mypath/lib/libm.a', needed by `/myPath/bin/appName'
Why is the linker looking for libm.a ac …
2
votes
2answers
133 views
What caused the mysterious duplicate entry in my stack?
I'm investigating a deadlock bug. I took a core with gcore, and found that one of my functions seems to have called itself - even though it does not make a recursive function call. …
2
votes
8answers
455 views
Why can you return from a non-void function without returning a value without producing a compiler error?
Ever since I realized many years ago, that this doesn't produce an error by default, (in gcc at least) I've always wondered why?
I understand that you can issue compiler flags to …
2
votes
2answers
90 views
Strange performance problem.
I have a container similar to this one.
template <typename Nat, typename Elt>
class NatMap {
public:
Elt& operator[] (Nat nat) {
return tab [nat.GetRaw()];
}
…
