DrPizza
|
Registered User
|
General schmuck.
|
|
9h |
comment |
Why set a pointer to NULL after calling free() in C? @Chris Lutz: Hogwash. If you write code that frees the same pointer twice, your program has a logical error in it. Masking that logical error by making it not crash doesn't mean that the program is correct: it's still doing something nonsensical. There is no scenario in which writing a double free is justified. |
|
18h |
comment |
Why set a pointer to NULL after calling free() in C? Except that this is not "safer", as it masks program errors. |
|
18h |
comment |
Why set a pointer to NULL after calling free() in C? @gs: Yup, it's a horrid practice. Double free is a logical error; you don't want logical errors to be hidden, you want them to blow up noisily and immediately. |
|
18h |
answered | How to protect Java codes against decompiler ? |
|
18h |
comment |
What is The Zen of C++ Not even funny, really. I'm not convinced that anyone in practice has ever professed such a belief; it's just a trope used by trolls. |
|
1d |
comment |
void has unknown size in Visual C++ There is no good reason not to use a pointer to (unsigned) char for this purpose. It's what the NT kernel devs do, for example (no stupid gcc extensions for the NT kernel, after all). If you think it's ugly, create a macro or something. |
|
1d |
comment |
void has unknown size in Visual C++ @Chris Lutz: "Kernel source/glibc is practically written in assembler". No, kernel source is almost overwhelmingly C. That's how kernels manage to be portable between architectures. The bare minimum is written in assembler. |
|
1d |
comment |
Limitations of PEG grammar & parser generators? (adding semantic actions that update a table of typenames does, however, cause a problem if you want to memoize your results, as is done in Packrat parsing) |
|
1d |
comment |
Limitations of PEG grammar & parser generators? The real value of PEGs, btw, is in designing your own languages; using a PEG ensures that the language is unambiguously parsable, rather than the traditional approach to language design which is to either not care about parsing (and come up with abominable syntaxes like C and C++) or to design a syntax and then beat on it until it eventually becomes something that your tool (traditionally yacc) can actually parse. By making the fundamental operation parsing (rather than sentence-generation), PEGs make this aspect of language design much easier. |
|
1d |
comment |
Limitations of PEG grammar & parser generators? Ah yes, of course. The solution as ever is to have actions associated with rules; Boost's Spirit2 parser framework uses PEGs as its underlying model, and I believe it allows suitable actions--every successful type declaration should add its identifiers to a table of type names. In conjunction with PEG ordering (declaration rules are tried before expression rules), the PEG will do the right thing. The Spirit2 source is unfortunately the usual impenetrable stuff we expect from Boost. |
|
2d |
answered | C++: Loading an EXE as a DLL, local vftable problem |
|
Dec 7 |
answered | Why does ‘unspecified_bool’ for classes which have intrinsic conversions to their wrappered type fail? |
|
Dec 7 |
comment |
Limitations of PEG grammar & parser generators? That said, I don't know if PEGs can handle the entire C++ or Python grammars; I've not tried. |
|
Dec 7 |
comment |
Limitations of PEG grammar & parser generators? Most parsers can't properly deal with context-sensitive grammars without hacks of some kind (e.g. for parsing C you make the parser feed back into the lexer so that it assigns the right symbol type to type names, so that they don't get treated as regular identifiers). PEGs are interesting because they can directly express the disambiguation rules that C and C++ use (I don't know about Python). Specifically, "if it looks like a declaration, it is". They can do this by ordering their rules so that the declaration rule is tried before the statement rule. |
|
Dec 6 |
answered | Limitations of PEG grammar & parser generators? |
|
Dec 6 |
comment |
Origin of term “reference” as in “pass-by-reference” A pointer is not a memory address. A pointer is often a memory address, but it is not a memory address. There are systems with segmented memory, for example, where a pointer might be an offset ("near" pointers) or a selector plus an offset ("far" pointers). C# pointers have the same operational semantics as pointers, by definition. Pointers are references that can be rebound, and that's precisely what C# has. |
|
Dec 6 |
comment |
C++ - Arguments for Exceptions over Return Codes The unwind is orderly just so long as you have a catch(...) around main (according to the spec), or, in practice, regardless of what you do (technically a stack unwind requires there to be at least one matching handler; in reality, it unwinds all the way even if there isn't a handler, and just crashes the program once it's finished unwinding). But as long as the stack unwind occurs, it's orderly. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
answered | combine native dll and assembly into a single dll |
|
Dec 5 |
comment |
C++ - Arguments for Exceptions over Return Codes @JaredPar: But stack unwinds don't "wreak havoc". They perform as orderly a shutdown as can be hoped for, given the circumstances. |
|
Dec 4 |
answered | WPF:MoveableControl |
|
Dec 4 |
answered | Get the templated type as a string |
|
Dec 4 |
answered | .NET COM Library is not unloaded from C++ host process. |
|
Dec 3 |
accepted | Is Double-buffering required with Desktop Composition enabled? |
|
Dec 3 |
comment |
How can I know the ACTUAL maximum number of elements a .net array of a given type can be allocated? Even with a 3 GB process, btw, your largest contiguous block is still something under 2 GB. Reason being, the libraries that are normally loaded to the top of the 2 GB space are still loaded there in 3 GB processes, thereby partitioning it into a chunk somewhat under 2 GB, and a chunk of about 1 GB. |
|
Dec 3 |
answered | Is Double-buffering required with Desktop Composition enabled? |
|
Dec 3 |
accepted | C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar? |
|
Dec 3 |
answered | Integrating into Windows Explorer context menu |
|
Dec 3 |
comment |
C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar? It's generally considered poor practice to expose concrete types in public methods; apart from anything else, you should consider changing DataSource to be IList<T> instead of List<T>. |
|
Dec 3 |
comment |
C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar? Well the real question I would have is, why isn't DataSource just a List<IEntity> in the first place? If he wants to treat them as plain ol' IEntities anyway (and not use any T-specific methods), it would seem easier to just store them in a List<IEntity> in the first place. |
|
Dec 3 |
comment |
C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar? Whilst not as bad as the array subtyping hole, I'm still not sure this is really something that should be encouraged. |
|
Dec 3 |
comment |
C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar? Copy out to a List<IEntity>, copy back in afterwards. If you don't need growability (just replacement of elements) than an array will work. |
|
Dec 3 |
answered | C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar? |
|
Dec 3 |
answered | C# - Running Total using Aggregate() |
|
Dec 3 |
answered | What’s C++ Really Doing When I Accidently Use a Variables to Declare Array Length? |
|
Dec 2 |
comment |
Why does C# not have C++ style Static libs? lol, back in 2004 he was expecting a new runtime every 6-12 months, huh. When in reality in the five years since that was written (January 2004), we've had exactly one new version of the runtime (version 2, in January 2006). Everything else has been libraries.... In any case, it has a linker (obviously; something has to resolve references between assemblies). It's just a dynamic, runtime linker. |
|
Dec 2 |
comment |
What question should be asked to test the interview candidate’s knowledge of references in C++ ? Hmm, as someone who knows about lifetime extending by binding to const references, and the fact that they call the right destructor even if it's non-virtual, I'd never heard the term "most important const", and think it's pretty stupid.... |
|
Dec 2 |
answered | Default assignment operator in inner class with reference members |
|
Dec 2 |
answered | Do potential exceptions carry an overhead? |
|
Dec 2 |
answered | exceptions across module boundaries in C++/CLI |
|
Dec 1 |
comment |
C/C++ maximum stack size of program Ah true, also often the case in kernel mode. |
|
Dec 1 |
comment |
Is there an occassion where using catch all clause : catch (…) is justified? That is a rather disappointing design decision. Fortunately, I think pretty much any implementation is likely to be sensible, but still, it justifies a top-level catch(...) handler in every thread of execution (including the main one). |
|
Dec 1 |
accepted | Is there an occassion where using catch all clause : catch (…) is justified? |
|
Dec 1 |
comment |
Is there an automated program to find C++ linker errors? waaaaaaaaaaaaaaaaaaaaaaah. |
|
Dec 1 |
comment |
Is there an occassion where using catch all clause : catch (…) is justified? @Will: I dunno where you've got this idea, but see section 15.2 paragraph 3 of the 2003 C++ specification, or even ready your own link. Exceptions aren't allowed to ESCAPE FROM a destructor, but they can be THROWN WITHIN a destructor--they just have to be caught there, too. And you know if you're unwinding already because std::uncaught_exception() returns true. |
|
Dec 1 |
answered | Is there an automated program to find C++ linker errors? |
|
Dec 1 |
answered | Minimum Number of Operations needed. |
|
Dec 1 |
answered | How to deal with initialization of non-const member in const object? |
|
Dec 1 |
comment |
C/C++ maximum stack size of program There are no "general limits". On Windows, with default VC++ linker options and default CreateThread behaviour, typically something around 1 MiB per thread. On Linux, with an unlimited user, I believe that there is typically no limit (the stack can just grow downwards to occupy almost the entire address space). Basically, if you have to ask, you shouldn't be using the stack. |
|
Dec 1 |
answered | C/C++ maximum stack size of program |
