Search Results

1
vote

Template typedef error

Why not just do something like this? class Record { }; template <class T> class Table { public: typedef typename T Zot; }; class ConcreteTable : public Table<Record& …
11
votes

smart pointers (boost) explained

Why not try the boost documentation? …
1
vote

Why would you use ‘extern “C++”’?

C and C++ use different name mangling rules. Essentially, extern "C" tells the C++ compiler to name the function as C woul …
11
votes

Efficient string concatenation in C++

For most applications, it just won't matter. Just write your code, blissfully unaware of how exactly the + operator works, and only take matters into your own hands if it becomes an apparent bottl …
1
vote

Wrapping a data structure

I think the fact that you lack any virtual methods in the base class is an indicator that inheritance is a waste of time. All WrapperOne and WrapperTwo share is that they use the same data struct …
20
votes

Should I learn Python after C++?

There's no right or wrong answer, really. But I think you'll benefit more from learning Python. Given the similarities between C# and C++, you'll learn a different way of thinking from Python. T …
1
vote

C++: Rotating a vector around a certain point

Assuming you're using a standard vector implementation where (0,0) would be the top left corner and you're rotating around the point (x_origin, y_origin), this should do it: x = ((x …
2
votes

Embedding a Ruby interpreter in a C++ app

You're on the right track. The key is to do something similar to the section on Embedding Concepts i …
6
votes

Assigning to temporary (like 5 = 10 but for user-defined types)

Let's go line by line: Test x = Test(5) + Test(5) = 8;//assign to a temporary There's no big deal here. Temporaries are still just normal objects, and thus th …
0
votes

Why does Microsoft’s C compiler want the variables at the beginning of the function?

In C90, all variables have to be declared before the first statement. This is not the cas …
8
votes

Can you provide an example of parsing HTML with your favorite parser?

language: Ruby library: Hpricot #!/usr/bin/ruby require 'hpricot' html = '<html>< …
4
votes

How does code written in one language get called from another language

Typically the C++ code will invoke an interpreter for the scripting language. The degree of interaction between the compiled and scripting code is dependent on the interpreter but there's always a …
1
vote

How can I delete a node from the middle of a C++ queue?

I'm not entirely sure what you're trying to accomplish, but I'm certain you're doing it wrong. If you're merely trying to remove an element from a doubly-linked list that matches node->data_, it's …
1
vote

What are your recomendations for a C++ interface to Prolog?

While there are bunch of rules engines out there for Java, I'm not aware of any for C++. I'd stick with SWI-Prolog. The SWI-Prolog C++ interface is good, especially because SWI-Prolog itself is s …
1
vote

How are Java generics different from C++ templates? Why can’t I use int as a parameter?

You can't use primitives as type parameters in Java. Java's generics worth through type erasure, meaning that the compiler checks that you're using the types as you've defined them, but upon compi …

1 2 next
15 30 50 per page