bk1e

4,327
reputation
231 views

Registered User

name bk1e
member for 1 year
seen 13 hours ago
website
location Texas
age 31
.
Dec
1
awarded  Nice Answer
Nov
9
comment Is there a way to improve the speed or efficiency of this lookup? (C/C++)
@sbi: But it's so much fun to try to optimize an infinite loop.
Nov
7
revised Undefined symbols “vtable for …” and “typeinfo for…” ?
added 155 characters in body
Nov
7
comment Undefined symbols “vtable for …” and “typeinfo for…” ?
@Lisa: not necessarily, but defining non-inline non-template methods/functions in a .h file is likely to lead to a different linker error (multiple definitions). So I'll assume that everything in Obstacle is inline. Did you write definitions for all of Obstacle's member functions, including the constructor(s) and destructor? Note that if Obstacle has a pure virtual destructor, you are still required to write a definition for it.
Nov
7
comment Fastest way to write large STL vector to file using STL
std::vector doesn't have a data() method. You can use &vs.front() instead, assuming that the vector is not empty.
Nov
7
answered Undefined symbols “vtable for …” and “typeinfo for…” ?
Nov
1
comment What are the most surprising elements of the C++ standard?
I find it surprising how many people program in C++ that do not know that you can delete null pointers.
Oct
31
answered Can Ruby be used to develop simple Windows applications?
Oct
28
comment How to declare a static const char* in your header file?
You should use "static const char* const SOMETHING" instead, unless you really want to be able to reassign SOMETHING to point at something else at runtime.
Oct
28
comment Use of min and max functions in C++
@Rob Kennedy: en.wikipedia.org/wiki/…
Oct
28
comment Use of min and max functions in C++
Are there any platforms with 64-bit ints (ILP64) and 64-bit doubles? On those platforms, converting from int to double would result in a loss of precision for extremely positive/negative ints.
Oct
28
comment #include header style
Also true: "C++ can cause compile times to explode"
Oct
26
comment C/C++ Libraries for reading from Universal Disk Format devices or files
@Anacrolix: The COM component it uses is part of the 7-Zip source tree.
Oct
26
revised C/C++ Libraries for reading from Universal Disk Format devices or files
added 94 characters in body
Oct
22
comment Marking standard functions as deprecated/unusable
Do you have to make sure that you don't include any standard headers after using the poison pragma? Or does it only error for function calls and not declarations?
Oct
21
accepted Profiling DLL/LIB Bloat
Oct
21
revised Profiling DLL/LIB Bloat
added 259 characters in body; added 146 characters in body
Oct
21
answered Profiling DLL/LIB Bloat
Oct
20
revised Visual Studio Debugger - decrease time to attach & load symbols
added 228 characters in body
Oct
17
comment How to find free memory within a specific address range.
If an INT3 falls in the forest without a debugger there to hear it...
Oct
16
answered Visual Studio Debugger - decrease time to attach & load symbols
Oct
14
comment Inheritance and templates in C++ - why are methods invisible?
@OldCoder: When you're asking a question about an error, you should post the error message.
Oct
3
accepted runtime error (SIGSEGV)
Oct
1
awarded  Nice Answer
Sep
26
revised runtime error (SIGSEGV)
added 110 characters in body; added 9 characters in body
Sep
26
comment runtime error (SIGSEGV)
What is "scoj"?
Sep
26
answered runtime error (SIGSEGV)
Sep
25
comment Can someone explain this bat code?
Another workaround is to use some undocumented functionality of the "call" command: "call set t=%%n:~0,-4%%"
Sep
25
answered C/C++ Libraries for reading from Universal Disk Format devices or files
Sep
24
answered What’s the C++ equivalent of UINT32_MAX?
Sep
23
comment C++ for 8051 microcontroller?
@Johann Gerell: I suspect that writing a custom STL allocator that manages strings stored in ROM would be significantly more difficult (if even possible) than rewriting the string processing in C. Keep in mind that the OP's target system has only 128 bytes of RAM and 4 KB of flash. That means that the lookup tables must be stored in flash.
Sep
23
comment Why STL implementation is so unreadable? How C++ could have been improved here?
That still doesn't protect against poorly named user defined macros that conflict with names of types or member functions (e.g. #define size 2).
Sep
23
comment Why are “long *” and “int *” not compatible in 32-bit code?
It's not safe to assume that pointers to members (in C++) are the same size as other pointers.
Sep
20
comment Message loop gets blocked when application menu has the focus
GetMessage() returns a BOOL, but it actually has a tri-state return value. If it returns -1 (to signal an error), then your code snippet will probably crash or loop infinitely.
Sep
19
comment What is the worst real-world macros/pre-processor abuse you’ve ever come across?
One of the Windows header files also #defines interface to something.
Sep
19
comment What is the worst real-world macros/pre-processor abuse you’ve ever come across?
Naming a function or variable "NOMINMAX" would be evil, but it could happen. There can be unforeseen casualties when you fight macros with more macros. :)
Sep
16
comment Given a start, end, and increment value, I want an algorithm that counts up and down.
Good idea, but you should check your math. What happens when theta = 4.7?
Sep
16
awarded  Yearling
Sep
10
comment How to read/redirect output of a dos command to a program variable in C/C++ ?
I hope that you're really running some other command, not "dir", because there are much better ways to get a directory listing from C or C++.
Sep
7
comment Concatenating strings in C, which method is more efficient?
@Andrew Bainbridge: You can also indent by 4 spaces to format as code. Then you don't have to escape < and > and you also get syntax highlighting.
Sep
7
revised Concatenating strings in C, which method is more efficient?
Formatted code as code.
Sep
7
comment How to print the error message of GetLastError() in a textual form?
You should edit your question and add this information instead of posting it as an answer.
Sep
7
answered How to print the error message of GetLastError() in a textual form?
Sep
6
comment How to check if a file exists and is readable in C++?
access() is a great way to introduce time-of-check-to-time-of-use bugs.
Sep
6
revised Help with translating this assembly into c
edited tags
Sep
6
comment “rounding” with integers
Your first code snippet has a typo on the last two lines: the first assignment to spot_value is not used in the second.
Sep
4
comment Vector Iterators Casting
Is it vector<BaseClass*> or vector<ADlgcDev*>? Is one a typedef? A subclass?
Sep
1
comment Please help me, free() errors?
If your program uses shared memory or shared synchronization objects, you should at least deal with those.
Sep
1
answered Time complexity of the program
Aug
31
revised Memory leaks in C++ (via new+delete)
added 124 characters in body