Search Results

0
votes

Use Compiler/Linker for C++ Code Clean-up

http://en.wikipedia.org/wiki/Lint_programming_tool http://www.gimpel. …
1
vote

C++ - static variables initialisation order

http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.12 …
2
votes

Where can I find с/с++ users journal archive in suitable format (not .html)?

they merged with frobbs a couple years ago: http://www.ddj.com/cpp/cuj.jhtml. you might find something there. …
1
vote

Enum in C++ like Enum in Ada?

you might take a look at the java enum (http://madbean.com/2004/mb2004-3/) and this idea: …
0
votes

Deriving an abstract class from concrete class

a bit unusual, but if you had some other subclass of the base class and the subclasses of the abstract class had enough common stuff to justify the existance of the abstract class like: …
1
vote

C++ performance tips and rules of thumb anyone?

one simple sugestion is to get into the habit of doing ++i, rather than i++. i++ makes a copy and this can be expensive. …
3
votes

How can I add very large numbers in C++?

consider a "bignum" library like: http://gmplib.org/ or http://ttmath.slimaczek.pl/ttmath …
0
votes

How do you choose between a singleton and an unnamed class?

use singletons. use const. initialize them all in one god class. be aware of and avoid the static initialization order fiasco: …
2
votes

Trouble with Factory and dynamic allocation in C++

make provider an instance variable of AppFactory. then make provider a smart pointer or delete it in AppFactory's dtor. …
1
vote

Store huge std::map, mostly on disk

you will probably have to roll your own. i'd probably stick it in a couple of mysql tables and lazy load a fixed sized map (lru). if you really wan't to avoid a db, place the < 256 or whatever l …
1
vote

What is the best way to handle multiple object dependencies in C++?

use a singleton and don't forget about: http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.12 …
0
votes

Recursively generate ordered substrings from an ordered sequence of chars?

i used this java code (http://www.merriampark.com/comb.htm) and came up with only 383. the code generates way too many duplicates so …
0
votes

C/C++ testing framework (like JUnit for java)

if you are using windows, take a look at: http://stackoverflow.com/questions/243673/limitations-of-using-c- …
0
votes

Learning java as a C++ programmer

android uses it's own jvm. it has the standard jdk minus swing and awt (gui stuff). you should think of a reference as a pointer (but you can't do pointer arithmetic with it). packa …