Search Results

1
vote

cross platform unicode support

Perl has Encode as a standard library. It can be used to read/write any encoding you want, so that's not going to be a …
22
votes

How do you detect/avoid Memory leaks in your (Unmanaged) code?

In C++: use RAII. Smart pointers like std::auto_ptr, boost::shared_ptr, boost::scoped_ptr and boost::weak_ptr are your friends. …
1
vote

How do you normally set up your compiler’s optimization settings?

I prefer to use minimal size. Memory may be cheap, cache is not. …
4
votes

Function pointer OR switch case?

Function pointers are an open ended system. The end user of your code can pass a function pointer and decide what will happen. Switches are closed. Only you can decide what may happen. What …
0
votes

Open source PDF library for C/C++ application?

It depends a bit on your needs. Some toolkits are better at drawing, others are better for writing text. Cairo has a prett …
0
votes

Macro to test whether an integer type is signed or unsigned

For c++, there is boost::is_unsigned<T>. I'm curious why you need it though, there are few good reasons IMHO. …
0
votes

Where do I find the current {X} standard?

C++ is an ISO standard that costs a lot of money (370 swiss francs, which is about …
1
vote

What is the recommended version of GNU autotools?

Your experiences are not unusual. Autotools is brittle like that, specially for complex projects. There seems to be no alternative for having a lot of versions of it around, sadly. …
0
votes

C, C++, Java, what is next and what will it look like?

On the short term, I expect high level languages to become more powerful and more used. Perl 6 and Javascript 2.0 are good examples of what awaits us. On the long term, functional languages …
12
votes

What do you miss when you have to use C instead of C++?

C++'s improved type safety …
17
votes

What do you miss when you have to use C instead of C++?

Overloading (function, operator and method) …
9
votes

What do you miss when you have to use C instead of C++?

Real const-correctness. …
12
votes
4
votes

Operations on arbitrary value types

In C++ this is simply not an issue. The code as in your first sample works if literally translated into C++ (ETA: as Pieter did), but I can't think of any situation where directly …
3
votes

Why don’t more C programs embed Perl?

There are two reasons why one may call a perl function from C: extending and embedding. In the former case, it isn't all that uncommon actually, but it's rather invisible for outsiders. …