Search Results

1
vote

using a vector of column names, to generate a sql statement.

Not to belabor the point but take a look at boost::algorithm::join(). Here's an example in case you think that their documentation is too dense for words: std::string build_sql(std: …
2
votes

What is the best way to do input validation in C++ with cin?

How about a combination of the various approaches: Snag the input from std::cin using std::getline(std::cin, strObj) where strObj is a …
4
votes

What are the important language features (idioms) of Python to learn early on

Decorators get my vote. Where else can you write something like: def trace(num_args=0): def wrapper(func): def new_f(*a,**k): print_args = '' if num_args > 0: …
3
votes

Which is better practice - for loop with break or conditional loop?

There is a conceptual difference between the two. for loops are for iterating over discrete sets and while loops are for repeating statements based on a condition. Other l …
1
vote

Best approach to define a constant (used in a constant expression) in the class?

I'm not sure if they are completely interchangeable in this specific case. Since you are basing the size of an array member on the constant, I believe that it has to be an enumerated value. I don't …
2
votes

How come open source applications that are targeted at enterprises, don’t have these security features?

I think that Charlie nailed it: …
7
votes

size_t vs int in C++ and/or C

In general, size_t should be used whenever you are measuring the size of something. It is really strange that size_t is only required to represent between 0 and SIZE …
0
votes

Best Practice For List of Polymorphic Objects in C++

I would propose boost::shared_pointer<Shape> in an STL container. Then use …
1
vote

Reason why not to have a DELETE macro for c++

macros are evil :p Seriously, consider using inlined template fu …
2
votes

Optimizing Data Translation

The best place to start is by creating an "internal representation" which is the representation that your processing will always. Then create translators from and to "external represe …