rama-jka toti
|
Registered User
|
.NET-sheep downvote magnet..
|
|
22h |
accepted | Obtaining a timestamp in C# of when the WinCE device booted up |
|
Nov 18 |
awarded |
● |
|
Nov 17 |
comment |
Why should exceptions be used conservatively? It is perfectly possible to guarantee that an instance of type has/not completely constructed without exceptions at all. And while it can look like a cludge, it outperforms, is quite rare plus the error codes are a universal/cross-env mechanism (which is all there is out there, on any box). All of this while exceptions are pretty much limited to your language, environment and often even compiler choice. That's why 'must' and 'only' are missing the point. |
|
Nov 17 |
comment |
Why should exceptions be used conservatively? again, it is a myth and 'must' is too strong. passing a reference argument to a constructor 'downgrades' you to pre/post verification and error code land. while there, note that plenty of std libs allow you to replace the new handler. ok, while it does break a very useful contract, ie. that the constructor has run fully or not, the workaround is usable and pretty rare. again, the 'must' just doesn't make any sense, all you end up with is machine code and that 'must' is a myth which was never correct. |
|
Nov 17 |
comment |
Why should exceptions be used conservatively? the last paragraph and 'must' is a myth. It is convenient but never a must. |
|
Nov 12 |
comment |
Is anybody working on a high level standard library for C++ I'd consider myself lucky that it hasn't, otherwise it would have messed up with memory models as much as Java, and to lesser extent C#. These are known artifacts in those environments. Second, rest assured that the people doing the CPUs are telling C++ compiler guys what to do and how.In that sense, both Java and C# 'rushed in'.You could have used posix or nt or boost wrapped one for years and most compilers gave you freebies that are executing far better than in VMs and their pools on top of OS bits.It is niche though,however, that's not its focus, it's a tool for any kind of idea,ie.Rubies |
|
Nov 12 |
comment |
Is anybody working on a high level standard library for C++ I can agree on some things but for threading I'll drop a note that hopefully makes sense. Remember though that all other environments are implemented with C or C++ and then some real ugly glueing.. |
|
Nov 12 |
revised |
save inline asm register value to C pointer, can get it on GCC but not VC added 22 characters in body |
|
Nov 12 |
answered | save inline asm register value to C pointer, can get it on GCC but not VC |
|
Nov 12 |
comment |
Design methods for multiple serialization targets/formats (not versions) I'll accept this for completeness and effort covering plenty of angles.. cheers. however, I cannot see the coding standards preference not introduce friend, and while I can't nail it yet, I'm somewhat reluctant to go for it.. could be wrong though but have to see first. |
|
Nov 11 |
comment |
Adding functionality to a handle wrapper. all good and not an issue at all.. it wouldn't be interesting or challenging if we all agreed to the same principles. and without wide, different angles it would be dry and boring fast imo. piece to all.. |
|
Nov 11 |
comment |
Adding functionality to a handle wrapper. ok will delete all the comments.. you have a fair point but he got 10 solid examples how it beats the 'Coding Standards' shoehorning :) |
|
Nov 11 |
answered | Can Go programming language replace C/ C++ ? |
|
Nov 11 |
comment |
sizeof(*this) in header only constructor implementation ok, lets nitpick. There's a question mark as a doh, question. The title is a specific context. The 'header' is a dark .h-pit that had someone, anyone, look at some code and come across the construct and wonder about its usage. Whilst a specific scenario, it's ok to ignore it and see some other perspectives. Third, the fact English is not the only language on the planet should allow for some leniency. And what I'm really asking is starting from ',' and goes beyond the italic part to the end of that paragraph. I'll edit the title but if it can be made better, please let me know again. |
|
Nov 11 |
revised |
sizeof(*this) in header only constructor implementation edited title; edited title |
|
Nov 10 |
comment |
Practical uses of TypedReference +1 for not slamming the C-style varidiac bits :) And here's to hope you'll have variadic templates (not generics) by 5.0. |
|
Nov 10 |
comment |
“The Pragmatic Programmer” book is 10 years old now, are parts of it no longer relevant? +1 for nothing ever changing :-) still as hard as ever.. |
|
Nov 10 |
answered | “The Pragmatic Programmer” book is 10 years old now, are parts of it no longer relevant? |
|
Nov 10 |
comment |
sizeof(*this) in header only constructor implementation cheers for the tag and edit.. |
|
Nov 10 |
comment |
Design methods for multiple serialization targets/formats (not versions) +1 for scalability viewpoint.. |
|
Nov 10 |
comment |
Design methods for multiple serialization targets/formats (not versions) +1 for boost as i almost consider it part of language.. and of course for similarity/diversity angle. |
|
Nov 10 |
comment |
Design methods for multiple serialization targets/formats (not versions) thanks.. and all appreciated, +1. I always do an upvote phase first for the perspective (and there are many) or effort, and more questions perhaps later.. |
|
Nov 10 |
asked | Design methods for multiple serialization targets/formats (not versions) |
|
Nov 10 |
asked | sizeof(*this) in header only constructor implementation |
|
Nov 10 |
accepted | Adding functionality to a handle wrapper. |
|
Nov 10 |
comment |
multi-dimensional array transmit issue as mentioned, I'd imagine it is: offline = all-data-driven ie. by a form of 'bytecode'. online = opening space for optimisations but could still end up using offline methods as fallback. |
|
Nov 9 |
comment |
Adding functionality to a handle wrapper. (all 'critical' of polymorphism bits above are related to runtime kind of course not compile-time). One great example: functors often use 'inheritance' and it looks pretty to me. |
|
Nov 9 |
comment |
Adding functionality to a handle wrapper. I would use boost, seriously, all done. But if I was to do it for some reason, yes I would avoid usage fnieto mentions, and forbid polymorphism for this (it makes a lot of sense and you can always store ptrs in containers). So can you guarantee what fnieto specified below is the case? It depends, so your pick, but do lean towards containment if less experience devs will use that same code. |
|
Nov 9 |
comment |
Adding functionality to a handle wrapper. Regarding polymorphism, it has its uses and plenty of scenarios, but when it doesn't, it really does not have any :) I like containing typedefs for example and that's not containment at all :) But your right if one requires polymorphism. In this example we are dealing with an OS and it certainly does no OO at all. It uses what Stepanov terms a remarkable machine abstraction achievement: C. And while you can simulate polymorphism with it, and they often do in low-level code, C++ provies huge benefits to play with types and tremendously powerful or specific constraints. |
|
Nov 9 |
comment |
Adding functionality to a handle wrapper. It was quoted and you do provide the right keyword: composition. Mix-ins are not coupling, on the contrary. You can replace the handle type centrally.and do plenty more. Just like headers and templates are not coupling. Those who adore their .cpp usually love the containment too :) Composition-based techniques are one of the most underestimated out there but: it isn't a problem in functional space. OO guys need to question that more, why not. Even in algorithms, sure, neither is useful but composition stands out in functional form, not inheriting or containing, not dealing with polymorphism.. |
|
Nov 9 |
comment |
Serialize Strings, ints and floats to character arrays for networking WITHOUT LIBRARIES +1, and I haven't seen it mentioned here in this context.. although vendors tend to avoid marshalling, as well as serialising floats of any kind, finally :) |
|
Nov 9 |
revised |
Adding functionality to a handle wrapper. added 2 characters in body; deleted 7 characters in body; added 6 characters in body; added 32 characters in body |
|
Nov 9 |
answered | Adding functionality to a handle wrapper. |
|
Nov 9 |
comment |
Serialize Strings, ints and floats to character arrays for networking WITHOUT LIBRARIES +1 for highlighting issues, and adding undefined padding. And I'll bite the bate :), what are the subtle bugs with IEEE NaNs in this scenario? Thanks.. |
|
Nov 9 |
comment |
C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation? And while I'm not defending order-dependence here, the correct observation is that it is hugely relevant but rarely desirable. But it is something even VM's official specifications are extremelly restricted to. Java impl especially and CLR to a lesser but still significant extent.It is a hack not to break large bodies of working code and assumptions made, a concious decision by compiler and jit backend designers. The code that is capable of order-independent processing lends itself to a huge array of possibilities but can be infeasible for plenty of scenarios. |
|
Nov 9 |
comment |
C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation? So that WC in RIIWC oxymoron is replaced with Aquisition, which implies a Release btw. And since memory and large number of resources are mostly abstracted, ops, there goes the idea... and hacks of all kinds ensue. Put short, it's simply nature of the problem and it matters a lot. |
|
Nov 9 |
comment |
C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation? Created well is no good. It has to be order-dependent, release dependent and known in many circumstances. It couldn't matter more in all implementations of databases, transactions, and anything that runs on a stack (most software out there). Locks are another example and there's stacks of non-external and non-poor libraries using it. File ops and their locks are another. Event leakage another. Any unmanaged resource depending on yet another. Creation and destruction go hand in hand, and the idiom cannot be brokenly taken as Resource-Initialization-Is-"well-Creation." |
|
Nov 9 |
answered | Implementation of Red-Black Tree in C# |
|
Nov 9 |
answered | C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation? |
|
Nov 8 |
comment |
multi-dimensional array transmit issue Than you're just out of luck. Seriously, I think you are over-worried with the terms 'offline' and 'online'. Don't let them scare you, as they were probably the terminology MS used while they were still under an impression Windows NT3.x and 95 don't need TCP/IP or Internet :) They did that job properly and you won't see much of a difference especially on modern CPUs and it is unlikely to be your primary bottleneck ever. Run a profiler and see the culprits, in protocol chatiness/roundtrips, in code, etc. You can optimise somewhere else and by a huge margin in comparison to this micro-worry. |
|
Nov 8 |
revised |
Decorator with generic base class added 49 characters in body; deleted 10 characters in body; added 28 characters in body |
|
Nov 8 |
comment |
Decorator with generic base class edited.. please let me know if I can make it even more readable. |
|
Nov 8 |
revised |
Decorator with generic base class added 11 characters in body; added 6 characters in body |
|
Nov 8 |
revised |
Decorator with generic base class added 517 characters in body; added 1 characters in body; added 270 characters in body |
|
Nov 8 |
revised |
Decorator with generic base class added 237 characters in body; added 1 characters in body |
|
Nov 8 |
answered | Decorator with generic base class |
|
Nov 8 |
comment |
Getting the current time (in milliseconds) from the system clock in Windows? +1 for indepth breakdown. Care to add the bit for NT5.1+ regarding 'at least at the time of Windows NT 3.1, 3.51, and 4.01.. fastest user-api'. Does it imply it is no longer the case? |
|
Nov 8 |
comment |
Why C/C++’s #pragma_once isn’t an ISO standard? and sure, while policing is hard to enforce TM Ltd, someone at the committee wonderland should have picked up the idea that inclusion and linking mechanism is really outdaded, error-prone and requires urgent and backward-compatible modernisation to migrate to. they had roughly 15 years of good examples out there and nothing comes out on it yet again.. |
|
Nov 8 |
comment |
Why C/C++’s #pragma_once isn’t an ISO standard? I'm upvoting this for the effort but want to present the other side too. if they are touting portability and finally including constructs that are widely used for over 20 years.. and most importantly, if they are on a payroll, and if standards are supposed to be obeyed, it naturally would piss me off because it is a cost to everyone else but vendors to support non-standard pragmas and by implication, even allow them to exist. that would be a job bad done in my opinion. |
|
Nov 8 |
revised |
multi-dimensional array transmit issue added 56 characters in body |
