MSalters
|
Registered User
|
|
|
2d |
accepted | Runtime error: Access violation when using .push_back() with a std::vector? |
|
2d |
answered | Problem interfacing C++ POS controls with the .NET POS SDK |
|
2d |
revised |
Problem interfacing C++ POS controls with the .NET POS SDK Format |
|
2d |
revised |
How can I get an iterator on a vector of templated objects ? in source |
|
2d |
comment |
wxImage to Zip file via stream. Possible? As for the "expects a class wxOutputStream but wxTextOutputStream/wxDataOutputStream have no base class" - that's good. The names are poorly chosen, which mislead you. The inheritance is good, though: they're indeed not wxOutputStream types. Hence, you can't use them in SaveFile(), which is correct. |
|
2d |
comment |
wxImage to Zip file via stream. Possible? As usual, it'd help if you tell us the actual error. |
|
2d |
comment |
wxImage to Zip file via stream. Possible? Even if it would, don't. Please specify what C++ cast you mean. Is this a static_cast<> or a reinterpret_cast<> ? |
|
2d |
answered | Dividing by arbitrary numbers using shifting operators |
|
2d |
comment |
Dividing by arbitrary numbers using shifting operators Using two loops? You're testing repeatedly to find the highest value of tmp such that (24 << tmp) < value but every time you find such a factor, you restart tmp at 1. |
|
2d |
comment |
Dividing by arbitrary numbers using shifting operators The code you show calculates a single boolean, and actually has very little to do with divsion. cosider that 24 is binary 11000. Now it is obvious that 11011000 % 11000 == 0. 11011000 = 11000000 + 11000, and 11000000 % 11000 == 0 and 110000 % 11000 == 0. This can be generalized to a test (x % N ==0 ) where N is a constant. |
|
2d |
comment |
Conditionally instantiate a template at run-time. You appear to have a terminology problem. You instantiate a class template to create a class. You can subsequently create objects of that type. In the exampel given, you want to instantiate myClass twice, with arguments A and B, but create one object. |
|
2d |
answered | Runtime error: Access violation when using .push_back() with a std::vector? |
|
2d |
comment |
Runtime error: Access violation when using .push_back() with a std::vector? -1, this is a Windows environment from the name. Hence, we know that std::vector<T*> doesn't care about bad T*'s. |
|
2d |
comment |
Does a boolean condition in a for loop that is always false get optimized away? The compiler cannot optimize away a value that will be provided by the user. That would require a time machine. |
|
2d |
revised |
Is there equivalent of <? extends T> <? super T> in c++? Missed header |
|
2d |
revised |
How to write a const_iterator in VC++6? Fixed the name of the functions, and applied formatting |
|
2d |
comment |
How to write a const_iterator in VC++6? Just upgrade. Really, sticking with VC++6 is no longer sane. |
|
2d |
comment |
[C++] Using a virtually inherited function non-virtually? Entirely true, but I only fixed the compile problem, not the conceptual one, From the edited question it is now clear that the root cause was really a loss of insight. |
|
2d |
comment |
Should the conditional operator evaluate all arguments? A recent Linux bug was caused by exactly this attribute. In the offending code, a pointer was first dereferenced (basically int* member = &(foo->bar); and then checked if (!foo) return;. However, because of the dereference, the foo[[IsNull]] attribute was already set to false, and the NULL check optimized out. |
|
2d |
revised |
Should the conditional operator evaluate all arguments? Variable is named arg, not a |
|
2d |
comment |
Should the conditional operator evaluate all arguments? @jalf: True, it may not be zero due to rounding. But in that case, there's no divide by zero. The following two statements are entirely equivalent and interchangable: x==0 and 1./x is a divsion by zero (under IEE754 and all other implementations I know) |
|
Nov 26 |
accepted | Should the conditional operator evaluate all arguments? |
|
Nov 26 |
accepted | Are there well-defined size limits in FormatMessage? |
|
Nov 26 |
answered | [C++] Using a virtually inherited function non-virtually? |
|
Nov 26 |
answered | window less Application |
|
Nov 26 |
comment |
window less Application No, that doesn't work. An application might also have no windows at all, e.g. simply because it hasn't called CreateWindow yet. |
|
Nov 26 |
comment |
C# null coalescing operator equivalent for c++ In GCC, it's a ?: b but that's non-portable. |
|
Nov 26 |
comment |
Should the conditional operator evaluate all arguments? @starblue: almost correct. 1./arg cannot overflow. 10.0/arg could overflow, though. (again assuming IEEE754, 1E0 / 2E-308 = 5E307 which is < 1.7E308) |
|
Nov 26 |
answered | Should the conditional operator evaluate all arguments? |
|
Nov 26 |
comment |
Should the conditional operator evaluate all arguments? No it doesn't. Perfectly well-defined process. In particular, 0.0 == -0.0. Hence, for all sets of values for which 1./arg is defined, we know that arg != 0.0. |
|
Nov 26 |
comment |
Sending message to different thread Of course, if all you have is a ThreadId, that suggestion won't work either. |
|
Nov 26 |
answered | How to find out if a thread has message queue? |
|
Nov 26 |
comment |
How to find out if a thread has message queue? -1, there's a bit of a race condition here. |
|
Nov 26 |
comment |
One more string implementation in C: advantages and disadvantages Actually, the suggested algorithm for appending is a bit bad. It's easier to keep the length manipulation together. That means moving step 3 to the end. Still a pain, though. |
|
Nov 26 |
comment |
std::string a container @Anku: Plain Old Data - a C++98 concept that indicates simple types. POD types cannot have virtual functions, and can be safely memcpy'd, for instance. |
|
Nov 26 |
answered | Non blocking socket from within a DLL (no window) |
|
Nov 26 |
comment |
How do I convert a char string to a wchar_t string? Most Windows functions actually come in two flavors, a "A" and "W" version. E.g. MessageBoxA / MessageBoxW, with a macro "MessageBox" refering to one of the two. But if you use the explicit MessageBoxA name, you can pass a char* independent of project settings. |
|
Nov 26 |
comment |
How to dynamically create a union instance in c++? Methods in structs? Heck, with C++ you can even have methods in unions ! |
|
Nov 26 |
comment |
Programmatically differentiating between USB Floppy Drive and USB Flash Drive in Windows Better make that 2.88 MB, although I believe that floppy format was uncommon outside of Japan. |
|
Nov 26 |
comment |
Programmatically differentiating between USB Floppy Drive and USB Flash Drive in Windows Ah, that's from a user viewpoint, when you're manually changing driveletters. Makes sense then, I was thinking from a OS viewpoint. |
|
Nov 26 |
answered | Are there well-defined size limits in FormatMessage? |
|
Nov 26 |
comment |
C tokenize polynomial coefficients I'm inclined to fix either the tile or the tag, since C != C++. But I'm a bit hesitant because I think the code is C and the error message comes from a C++ compiler. |
|
Nov 26 |
comment |
STL container’s read-only operations True, but the same applies if you use Intel TBB: you can't port that to AMD TBB either. The point of sticking to a standard library implementation is that you can switch to any other thread-safe implementation, and still have the same API. |
|
Nov 26 |
comment |
Making map::find operation case insensitive Fair point, but that point would have been a lot clearer. E.g. if you had explained that std::map supports but a single index, which can be either case-sensitive of case-insensitive but not both. From there it's an easy link to boost::multi_index, which does support a second index. |
|
Nov 26 |
revised |
Why does this pointer to C++ function code generate a compile error? Same code, different question, so reworded "update" |
|
Nov 26 |
comment |
Decompression from unicode to 7bit ascii @Xander: UTF-7 is a Unicode encoding, like the UTF-16 used by .Net. Now there are characters outside of Unicode (Klingon for instance) but you can't lose those by converting between different Unicode representations. |
|
Nov 26 |
comment |
One more string implementation in C: advantages and disadvantages Memory overhead of the counter size? The solution relies on heap allocation, even for short strings. That probably adds another 8-16 bytes per string. Also, there is a very high correspondence between the length of the string and the length of the allocated memory, but this is not used in the memory allocation scheme. Hence this information is stored twice, which is obviously inefficient. |
|
Nov 26 |
comment |
Can a reference type be used as the key type in an STL map Not directly, but boost::reference_wrapper<Foo> should work. It has an implicit conversion to Foo& |
|
Nov 26 |
answered | Programmatically differentiating between USB Floppy Drive and USB Flash Drive in Windows |
|
Nov 26 |
answered | What is the performance penalty of operator overloading STL |
