0
votes
Why is my 64-bit C++ app crashing?
Exception code 0xc0000005 is an access violation: your program tried to write to or read from memory it didn't own, most likely. The common reason for this in C/C++ is using a null pointer. Since …
2
votes
C++ Extended Ascii characters
Make sure you know the endianness of the machine in question, and just check the highest bit with a bitwise AND mask:
if (ch & 128) {
// high bit is set
} else {
// looks li …
0
votes
c++ - relearning
Most of KDE is written in C++, albeit with Qt's signal extensions. Probably lots of examples of good code there.
…
0
votes
C++ STL containers: what’s the difference between deque and list?
The performance differences have been explained well by others. I just wanted to add that similar or even identical interfaces are common in object-oriented programming -- part of the general meth …
1
vote
Does an arbitrary instruction pointer reside in a specific function?
OK, I haven't done assembly in about 15 years. Back then, I didn't do very much. Also, it was 680x0 asm. BUT...
Don't you just need to put a label before and after the function, take the …
0
votes
qt GUI connecting
Inherit from the class that uic generates, creating, say, a MyAppWindow class. Provide extra METHODs in that class, as well as a Document or Drawing object. Connect these methods to the signals y …
0
votes
Vim Editor is very smart?
Yes, the tool that provides this symbol index is called ctags, and many unix editors can use it. vim is nice on the command line, but I'd suggest spending a bit of time getting used to KATE. It's …
9
votes
Linux vs Windows Programming?
For C++, KDevelop 4.x and Qt are about as good as it gets. Make sure you're using the KATE editing component for KDevelop, and you'll have a very nice editor. It also supports RAD, with Qt's very …
1
vote
Does GCC support long long int?
long longs are well supported, and have been for a long long time [sorry]. As I understand it, this should have been 128 bit on 64-bit platforms, but for compatibility/portability reasons in GCC, …
1
vote
C++ or Python for C# programmer?
C# is a little closer to Java and C++ than it is to Python, so learn Python first out of the two.
However, my advice would be:
Stick with your current language and learn mo …
-1
votes
Best way to create an Environment object in C++
Sounds like you want a singleton pattern. This will let you create and use one object/instance of a class, but no more, even if you access it many times. See:
…
0
votes
Is C faster than C++?
Generally, hand-crafted code for a specific platform, by an expert in that platform, will be faster in C than in C++, because, very simply, C lets you think at a lower level, closer to the actual i …
1
vote
C++ sync and backup framework
Yep, rsync:
http://librsync.sourceforge.net/
Or if you really want a complete backup (rather than sync) codebase, use t …
