User Phil Nash - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:20:04Zhttp://stackoverflow.com/feeds/user/32136http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1930017/changable-return-data-type-in-c/1930112#19301122Answer by Phil Nash for Changable return data type in C++Phil Nash2009-12-18T19:06:03Z2009-12-18T19:24:14Z<p>If all elements of the matrix will be the same type as each other (ie it's a homogenous matrix - so all ints or all floats, etc) then the templated approach is the right way.</p>
<p>If, however, you want to be able to store heterogenous types (ie some ints, some floats, etc) then you'll have to use some sort of variant type. A good example is boost's <a href="http://www.boost.org/doc/libs/1%5F41%5F0/doc/html/variant.html" rel="nofollow"><code>variant</code></a> implementation.</p>
<p>You could also just use a <code>union</code>, but you'll probably end up writing much of the infrastructure of <code>variant</code> anyway.</p>
http://stackoverflow.com/questions/1921232/just-in-time-derivation3Just-In-Time DerivationPhil Nash2009-12-17T11:51:16Z2009-12-18T13:54:15Z
<p>There's a less common C++ idiom that I've used to good effect a few times in the past. I just can't seem to remember if it has a generally used name to describe it.</p>
<p>It's somewhat related to <a href="http://en.wikipedia.org/wiki/Mixin" rel="nofollow">mixins</a>, <a href="http://en.wikipedia.org/wiki/Curiously%5Frecurring%5Ftemplate%5Fpattern" rel="nofollow">CRTP</a> and <a href="http://homepages.fh-regensburg.de/~mpool/mpool07/proceedings/4%5Fslides.pdf" rel="nofollow">type-erasure</a>, but is not specifically any of those things.</p>
<p>The problem is found when you want to add some implementation to a class, but you don't want to put it <em>in</em> the class, or any class it derives from. One reason for this might be that the class could be part of an inheritance hierarchy where the implementation should only occur once. </p>
<p>Setting aside, for the the moment, issues such as whether a hierarchy should have concrete non-leaf classes, or whether virtual inheritance may be an option in some cases, I know that one solution to provide the implementation in a template class that derives from its template parameter. This then allows you to use the template when you create an instance, but then only ever use the object by pointer or reference to one of its bases (that's where the type erasure, in a loose sense, comes in).</p>
<p>An example might be that you have an intrusive reference count. All your classes derive from a ref count interface, but you only want the ref count itself, and the implementation of your ref count methods, to appear once, so you put them in the derived template - let's call it <code>ImplementsRC<T></code>. Now you can create an instance like so:</p>
<pre><code>ConcreteClass* concrete = new ImplementsRC<ConcreteClass>();
</code></pre>
<p>I'm glossing over things like forwarding constructors formed of multiple templated overloads etc.</p>
<p>So, hopefully I've made it clear what the idiom is. Now back to my question - is there an accepted, or at least generally used, name for this idiom?</p>
http://stackoverflow.com/questions/1921234/allow-touch-events-only-on-some-selected-labels-of-view/1921330#19213302Answer by Phil Nash for Allow touch events only on some selected labels of viewPhil Nash2009-12-17T12:08:29Z2009-12-17T12:08:29Z<p>You can set the <a href="http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIView%5FClass/UIView/UIView.html" rel="nofollow"><code>userInteractionEnabled</code></a> property of the <code>UILabel</code> to <code>NO</code>.</p>
http://stackoverflow.com/questions/1913934/create-intance-of-any-c-class-by-generic-way/1913980#19139800Answer by Phil Nash for Create intance of any C# class by generic wayPhil Nash2009-12-16T11:11:03Z2009-12-16T11:11:03Z<p>You need to use the new constraint when declaring Foo. This only works for types with a constructor with no arguments - which is fine in your case.</p>
http://stackoverflow.com/questions/1913935/what-are-the-arrow-brackets-in-an-obj-c-class-interface-for/1913966#19139667Answer by Phil Nash for What are the arrow brackets "<…>" in an Obj-C class interface for?Phil Nash2009-12-16T11:09:23Z2009-12-16T11:09:23Z<p>The angle brackets indicate a <a href="http://developer.apple.com/mac/library/documentation/cocoa/conceptual/ObjectiveC/Articles/ocProtocols.html" rel="nofollow">protocol</a>. They're analogous to interfaces in other languages.</p>
http://stackoverflow.com/questions/245584/d-templates-coolest-hack/250474#2504742Answer by Phil Nash for D Templates: Coolest HackPhil Nash2008-10-30T15:00:21Z2009-12-16T10:57:12Z<p><a href="http://www.digitalmars.com/d/2.0/templates-revisited.html" rel="nofollow">Compile time string hashing</a>. You can use this to obfuscate embedded strings in your code. Just search for "hash". quite a few other interesting samples on that page, too.</p>
http://stackoverflow.com/questions/1906134/is-there-any-technical-reason-to-use-or-not-to-use-var-in-c-when-the-type-is-kno/1906182#19061823Answer by Phil Nash for Is there any technical reason to use or not to use var in C# when the type is known?Phil Nash2009-12-15T09:17:29Z2009-12-15T09:17:29Z<p>In general no technical reason. Readability - in either direction - is the only real factor.</p>
<p>However, one small caveat is that <code>var</code> will infer the <em>static</em> type of the variable. If you want a sub or super class type you'll need to do the casting yourself. In the case of a <code>foreach</code>, as in your example, you can usually get downcasting performed for you "for free" just by declaring your loop variable with the subclass type.</p>
<p>The classic example is iterating over an XML NodeList that you <em>know</em> is a list of <code>XmlElement</code>, but <code>Nodelist</code> is typed as a collection of <code>XmlNode</code>s. Of course you can use a cast or an <code>as</code> to get back the type you want, but that would seem to defeat the purpose of using type inference :-)</p>
<p>Of course, the compiler will let you know about this as soon as you try to use a member of the node that is only available to <code>XmlElement</code> - so it's still not strictly a technical difference.</p>
<p><hr></p>
<p>Another thing that is a little annoying is that if you use a tool like Resharper, it's very aggressive about suggesting you use <code>var</code> in every possible situation. It's particularly annoying when it recommends you change, for example, an <code>int</code> declaration into a <code>var</code>!</p>
<p>However, unless you turn that feature off, you'll get less "noise" from Resharper the more you use <code>var</code>.</p>
http://stackoverflow.com/questions/1905996/emulator-for-a-wap/1906039#19060392Answer by Phil Nash for Emulator for a WAP?Phil Nash2009-12-15T08:49:08Z2009-12-15T09:08:42Z<p>People are still doing WAP? Hmm, <a href="http://stackoverflow.com/questions/109922/is-wap-dead">maybe - maybe not</a>.</p>
<p>You could try the Openwave SDK. Openwave sold their browser business to PurpleLabs last year (now Myriad Group) and there appears to be no further development on the SDK (which is a shame, as I was one of the SDK developers back in 2001). However I see that <a href="http://wapreview.com/blog/?p=3733" rel="nofollow">someone uploaded their own copy of the SDK binaries to the WAP Review forums</a>. (Interesting bit of history there in that post too).</p>
<p>Oh, I should add that the Openwave SDK has a full WAP emulator, allowing you to browse local wml and xhtml files in a device emulator (running the Openwave mobile browser codebase).</p>
http://stackoverflow.com/questions/1902136/advice-on-starting-a-large-multi-threaded-programming-project/1902241#19022412Answer by Phil Nash for Advice on starting a large multi-threaded programming projectPhil Nash2009-12-14T17:19:19Z2009-12-14T17:19:19Z<p>There's plenty of specific bits of individual advice that could be given here, and several people have done so already.
However nobody can tell you exactly how to make this all work for your specific requirements (which you don't even fully know yourself yet), so I'd strongly recommend you read up on <a href="http://en.wikipedia.org/wiki/High-performance%5Fcomputing" rel="nofollow">HPC (High Performance Computing)</a> for now to get the over-arching concepts clear and have a better idea which direction suits your needs the most.</p>
http://stackoverflow.com/questions/259240/iterator-adapter-to-iterate-just-the-values-in-a-map4iterator adapter to iterate just the values in a map?Phil Nash2008-11-03T16:48:10Z2009-12-14T15:35:51Z
<p>I'm just getting back into C++ after a couple of years of doing a lot of C#, and recently Objective C.</p>
<p>One thing I've done before is to roll my own iterator adapter for std::map that will deref to just the value part, rather than the key-value pair. This is quite a common and natural thing to do. C# provides this facility with its Keys and Values properties of its Dictionary class. Objective-C's NSDictionary, similarly, has allKeys and allValues.</p>
<p>Since I've been "away", Boost has acquired the Range and ForEach libraries, which I am now using extensively. I wondered if between the two there was some facility to do the same, but I haven't been able to find anything.</p>
<p>I'm thinking of knocking something up using Boost's iterator adapters, but before I go down that route I thought I'd ask here if anyone knows of such a facility in Boost, or somewhere else ready made?</p>
http://stackoverflow.com/questions/1900311/how-to-restart-the-uiview-animation/1900364#19003640Answer by Phil Nash for how to restart the UIView animationPhil Nash2009-12-14T11:27:47Z2009-12-14T11:27:47Z<p>If you start a new animation while one is already in process for the same property/ies it should start animating to the new property values from whatever the current values are, using the new animation settings.</p>
<p>So when you say you want to reset the animation, do you mean you want it to go back to the start, or just do something different? If the former I believe you'll just need to set the property/ies (in this case your transform) back to its initial settings and start a new animation block.</p>
http://stackoverflow.com/questions/1899775/how-to-rotate-text-drawn-by-quartz-on-iphone/1899829#18998290Answer by Phil Nash for How to rotate text drawn by Quartz on iPhonePhil Nash2009-12-14T09:14:42Z2009-12-14T09:14:42Z<p>What do you mean, exactly, by "rotate them to the normal mode"?</p>
<p>Assuming you just mean rotation within a 2D space, you would typically use a transform matrix. Have a look at <a href="http://developer.apple.com/mac/library/DOCUMENTATION/GraphicsImaging/Reference/CGAffineTransform/Reference/reference.html#//apple%5Fref/c/func/CGAffineTransformMakeRotation" rel="nofollow"><code>CGAffineTransformMakeRotation</code></a>.</p>
<p>You could apply it to the view itself (by setting the <code>transform</code> property), or to the CG context you have.</p>
http://stackoverflow.com/questions/1899674/how-to-convert-tchar-to-char/1899730#18997301Answer by Phil Nash for how to convert TCHAR*[] to char*[]Phil Nash2009-12-14T08:49:40Z2009-12-14T08:56:17Z<p>This requires more than a cast. <code>TCHAR</code> may or may not be typedeffed to <code>char</code>. These days it's more likely to be typedeffed to <code>wchar_t</code> (meaning a unicode build). If so you'll need a conversion.
If you have ATL available then I'd recommend <a href="http://msdn.microsoft.com/en-us/library/87zae4a3%28VS.80%29.aspx" rel="nofollow">the string conversion macros they provide</a> - in particular T2A looks like the one that you want.</p>
<p>Note these are not especially efficient for very large strings as they make temporary copies on the stack, but for most purposes they are simple, direct, and work just fine.</p>
<p>If you can't use ATL take a look at <a href="http://msdn.microsoft.com/en-us/library/aa450989.aspx" rel="nofollow">WideCharToMultiByte</a>. You'd need to wrap the conversion in something like <code>#if defined (UNICODE) || defined (_UNICODE)</code></p>
http://stackoverflow.com/questions/1887544/c-value-is-declared-but-never-used/1887564#18875640Answer by Phil Nash for C# value is declared but never usedPhil Nash2009-12-11T11:48:10Z2009-12-11T11:48:10Z<pre><code>catch (XmlException)
{
return false;
}
catch (XmlSchemaException)
{
return false;
}
catch (Exception GenExp)
{
throw GenExp;
}
</code></pre>
<p>Just omit the variable name.
For the last catch I'd advise using <code>throw;</code> instead of <code>throw GenExp</code> - as the latter loses the call stack. Although if you're really doing nothing more than a rethrow then just omit the whole catch block.</p>
http://stackoverflow.com/questions/1887097/variable-length-arrays-in-c/1887171#18871712Answer by Phil Nash for Variable length arrays in C++?Phil Nash2009-12-11T10:26:33Z2009-12-11T10:40:47Z<p>This was considered for inclusion in C++/1x, <a href="http://www2.research.att.com/~bs/C++0xFAQ.html" rel="nofollow">but was dropped</a> (this is a correction to what I said earlier).</p>
<p>It would be less useful in C++ anyway since we already have <code>std::vector</code> to fill this role.</p>
http://stackoverflow.com/questions/1886881/c-cli-advantages-over-c/1886927#18869276Answer by Phil Nash for C++/CLI : Advantages over C#Phil Nash2009-12-11T09:43:02Z2009-12-11T09:43:02Z<p>It's almost exclusively an interopability language - both for allowing .Net code to access legacy C++ libraries, or for extended existing (native) C++ code bases with access to .Net libraries (and some variations on these themes).</p>
<p>While it <em>is</em> possible to write fully fledged applications solely in C++/CLI, and it even gives you some language features not available in pure C++ (such as garbage collection), I doubt there are many people who would actually do this. If you're already moving away from pure C++ and don't have the goal of interop with .Net there are probably more natural choices (such as <a href="http://www.digitalmars.com/d/" rel="nofollow">D</a> or <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a>, for example - depending on which direction you want to go in).</p>
<p>Similarly, moving from pure C# to C++/CLI could arguably bring the advantages of C++ templates, but it's rare that this need would lead to you taking that step.</p>
http://stackoverflow.com/questions/1882070/find-out-if-a-function-is-called-within-a-c-project/1882110#18821104Answer by Phil Nash for Find out if a function is called within a C++ project?Phil Nash2009-12-10T16:15:05Z2009-12-10T16:15:05Z<p>Sounds like you need a code coverage tool. There's a list of them in this <a href="http://en.wikipedia.org/wiki/Code%5Fcoverage" rel="nofollow">wikipedia article</a>.</p>
http://stackoverflow.com/questions/1881884/xml-parsing-iphone/1881960#18819601Answer by Phil Nash for XML parsing iPhonePhil Nash2009-12-10T15:56:50Z2009-12-10T15:56:50Z<p>Why the []s instead of <>s > Is it a formatting issue?</p>
<p>Anyway, you'll need to use <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSXMLParser%5FClass/Reference/Reference.html" rel="nofollow">NSXMLParser</a> (or a third party solution).
See <a href="http://www.levelofindirection.com/journal/2009/9/24/elegant-xml-parsing-with-objective-c.html" rel="nofollow">this blog post of mine</a> for some more info and a useful wrapper.</p>
http://stackoverflow.com/questions/1880543/how-to-sort-an-array-which-is-mostly-sorted/1880565#18805653Answer by Phil Nash for how to sort an array which is mostly sortedPhil Nash2009-12-10T12:09:44Z2009-12-10T12:09:44Z<p>If it's already ordered to such a high degree, and the not-quite-sorted elements are not far from their correct positions, then this may be one of the few cases that <a href="http://en.wikipedia.org/wiki/Bubble%5Fsort" rel="nofollow">bubblesort</a> is useful.</p>
http://stackoverflow.com/questions/1880159/activity-indicator-not-animatingiphone/1880182#18801823Answer by Phil Nash for Activity indicator not animating=iphonePhil Nash2009-12-10T10:51:49Z2009-12-10T10:51:49Z<p>Are you performing your uploading on the main thread, or kicking off a background thread to do it?</p>
<p>If the former then you are blocking the UI thread so it doesn't have a chance to update the activity indicator.</p>
http://stackoverflow.com/questions/1879883/template-class-method-collides-with-overloaded-method/1879936#18799360Answer by Phil Nash for Template class method collides with overloaded method. Phil Nash2009-12-10T09:54:22Z2009-12-10T09:59:37Z<p>It depends what you're really trying to do. Your example as written doesn't make much sense as you're trying to set <code>member</code>, which is a <code>T</code>, from <code>x</code>, which is an <code>int</code>. While there are cases that may make sense I suspect in your real code you're setting something else.</p>
<p>Does the method have to have the same name? If so why?
Does specialising the struct for int make sense?
What other constraints do you have?</p>
<p>Perhaps this would work for you:</p>
<pre><code>template<typename T>
struct C
{
T member;
template<typename U>
void set(const U& x) { member = x; }
void set(int x) { member = x; }
};
</code></pre>
<p>Now <code>set(int)</code> overloads <code>set(const U&)</code>. <code>set(const U&)</code> accepts non <code>T</code> parameters, but will probably fail when you try to assign to <code>X</code>. It may allow more conversions than <code>set( const T&)</code>.</p>
<p>If that's not good enough, adding an <a href="http://www.extralevelofindirection.com" rel="nofollow">extra level of indirection</a> should do the trick:</p>
<pre><code>template<typename T>
struct C
{
T member;
void set(const T& x) { setInternal( x ); }
private:
template<typename U>
void setInternal(const U& x) { member = x; }
void setInternal(int x) { member = x; }
};
</code></pre>
http://stackoverflow.com/questions/1874783/what-are-the-situations-or-pros-and-cons-to-use-of-c-cli-over-c/1874850#18748509Answer by Phil Nash for What are the situations or pros and cons to use of C++/CLI over C#Phil Nash2009-12-09T15:56:40Z2009-12-09T15:56:40Z<p>With C++/CLI you can create, broadly speaking, three types of objects:</p>
<ol>
<li>Managed types. These will compile down to essentially the same IL as the equivalent C#. There is no performance opportunity here.</li>
<li>Native types. Compiles down to native code as if you'd used straight C++.</li>
<li>Mixed mode types. These compile down to managed code, but allow you to refer to native types too.</li>
</ol>
<p>You might think of (3) as being like writing C# code with PInvoke code to accessing the native stuff - except all the PInvoke stuff is generated for you.</p>
<p>There's more to it than that, of course, as well as some caveats - but that should give you an idea of how it's useful.</p>
<p>In other words it's really a glue language. While you can write fully fledged apps in C++/CLI it's more normal to keep the managed and native parts separate and use C++/CLI to bridge the two more cleanly than with PInvoke.</p>
<p>Another common use is to extend and existing, native, C++ code base with .Net library calls.</p>
<p>Just be careful that you partition your code well as it can be quite subtle sometimes in compiling your pure C++ code down to IL transparently!</p>
<p>As to your sidenote: PInvoke is a particular type of Interop. Interop comes in other forms too, such as COM Interop. In fact, more accurately, PInvoke is a set of language features that make Interop with native code easier.</p>
http://stackoverflow.com/questions/1874433/null-test-versus-try-catch/1874565#18745650Answer by Phil Nash for null test versus try catchPhil Nash2009-12-09T15:17:46Z2009-12-09T15:17:46Z<p>Use exceptions for exceptional cases - not normal program flow.</p>
<p>If you're having to do a lot of null checks consider making use of the <a href="http://en.wikipedia.org/wiki/Null%5FObject%5Fpattern" rel="nofollow">Null Object Pattern</a> instead of using real nulls to indicate a non-existent value that perhaps has default behaviour.</p>
<p>I was alway a bit suspicious of the Null Object Pattern until I started using Objective-C where it's the built-in behaviour. It really does clean up a lot of code (but it's still not always appropriate, of course).</p>
http://stackoverflow.com/questions/549962/instance-variable-method-argument-naming-in-objective-c3instance variable/ method argument naming in Objective CPhil Nash2009-02-14T23:14:22Z2009-12-09T15:02:42Z
<p>What conventions are people here following for naming of instance variables and method arguments - particularly when method arguments are used to set ivars (instance variables)?</p>
<p>In C++ I used to use the <code>m_</code> prefix for ivars a lot. In C# I followed the convention of disambiguating purely by use of <code>this.</code> for ivars. I've since adopted the equivalent in C++ too (<code>this-></code>). </p>
<p>In Objective C I've tried a few things but none have really seemed satisfactory.</p>
<p>Unless someone suggests something really nice I am resigned to the fact that I'll have to compromise (but please, don't make me use the <code>the</code> prefix for args!), so I'm interested to hear what the majority say - especially from those who have been using ObjC for a while.</p>
<p>I did some due diligence before posting this and a couple of good resources I found where:</p>
<ul>
<li><a href="http://cocoadevcentral.com/articles/000083.php" rel="nofollow">This style guide</a> (briefly mentions my subject)</li>
<li><a href="http://www.cocoabuilder.com/archive/message/cocoa/2008/4/3/203139" rel="nofollow">This thread</a> (a lot of ex C++ coders in there)</li>
</ul>
<p>They give me some ideas, but I'm still keen to hear what others are doing.</p>
<p>[edit]
Just to clarify: It's specifically how you distinguish ivars from method args that I'm looking for - whether that's through prefixes or some other technique.</p>
<p>[edit 2]
Thanks for all the responses and discussion points. I'm not closing this, but will just say that, as I indicated in my comments to the accepted answer, I've gone with the convention of prefixing init args with <code>the</code> (and setter args with <code>new</code>, which I was doing anyway). This seems to be the best balance of forces - even if I'm not keen on the aesthetic myself.</p>
http://stackoverflow.com/questions/1872700/the-difference-between-a-destructor-and-a-finalizer/1872745#18727453Answer by Phil Nash for The difference between a destructor and a finalizer?Phil Nash2009-12-09T09:48:13Z2009-12-09T09:55:44Z<p>Strictly speaking C# doesn't have a destructor (I believe the C# spec is confusing on this point).
C#'s finalizer looks like a C++ destructor but, as you say, is non-deterministic.
C# has deterministic clean-up in the form of <code>IDisposable::Dispose</code> (but this is still not called a destructor).</p>
<p>C++/CLI has deterministic destructors, which look like C++ destructors. At the CLI level these map onto <code>IDisposable::Dispose()</code> (<code>IDisposable</code> is implemented for you ).
C++/CLI has non-deterministic finalizers, which look like destructors but use the ! prefix instead of the ^ prefix.</p>
<p>The fact that C++/CLI uses the same syntax for destructors that C# uses for finalizers can be a little confusing - but it fits better with C++, which has a strong tradition of deterministic destruction.</p>
<p>Unfortunately the lack of universal definitions of these terms means you always need to clarify what you are talking about. Personally I always use the word <em>finalizer</em> when talking about the C# concept and reserve <em>destructor</em> for contexts where it definitely implies deterministic destruction.</p>
http://stackoverflow.com/questions/1872437/how-to-declare-and-change-global-variable-in-objective-c/1872445#18724453Answer by Phil Nash for How to declare and change global variable in Objective cPhil Nash2009-12-09T08:38:38Z2009-12-09T08:38:38Z<p>Just the same way that you would in C. Are you having any particular problem?</p>
http://stackoverflow.com/questions/1868659/two-subviews-in-uiscrollview/1868841#18688411Answer by Phil Nash for Two subviews in UIScrollViewPhil Nash2009-12-08T18:15:25Z2009-12-08T19:53:55Z<p>You can layer as many views (hidden or otherwise) as you like onto a UIScrollView (ie so they will all scroll and be zoomable).</p>
<p>The question is, do you want your second view to be scaled at 1.0 when the first view is scaled at 0.5? You can probably achieve this by setting the transform for the second view to by a 2x scaler. Then catch the zoom event (sorry, don't have the exact name to hand) and if the scale goes down to 0.5 or below, hide the first view and show the second (and vice-versa going the other way, of course).</p>
<p>[edit]</p>
<p>To scale the second view you'd do something like this just once when setting it up:</p>
<pre><code>view2.alpha = 0;
[view2 setTransform:CGAffineTransformMakeScale(2, 2)];
</code></pre>
<p>Then later override the zoom event:</p>
<pre><code>
-(void) scrollViewDidEndZooming: (UIScrollView*) scrollView
withView: (UIView*) view
atScale: (float) scale
{
if( scale <= 0.5 and prevScale > 0.5 )
{
view1.alpha = 0;
view2.alpha = 1;
}
else
{
view1.alpha = 1;
view2.alpha = 0;
}
prevScale = scale;
}
</code></pre>
<p>Of course all the usual caveats about untested code apply.</p>
http://stackoverflow.com/questions/1869031/what-is-the-application-heap-size-in-iphone/1869059#18690591Answer by Phil Nash for what is the application heap size in iphone ? Phil Nash2009-12-08T18:50:52Z2009-12-08T18:50:52Z<p>Available memory is not fixed. As well as device differences there are running processes (system processes) that consuming varying amounts of the device memory - and since there is no virtual memory all processes are drawing from the same heap.</p>
<p>All iPhones up to and including the 3G, and all iPod touches at least up to the current models (not sure about those) had 128Mb RAM. the 3GS has 256Mb.</p>
<p>For 128Mb devices the recommendation is to try and keep below about 26Mb, although you should usually have up to about 60Mb available (you can use the 34Mb inbetween for caching transient resources).</p>
<p>Sometimes the available RAM can even dip below 26Mb, so the smaller your footprint the better.</p>
http://stackoverflow.com/questions/1868731/detect-a-file-copy-in-progress/1868802#18688020Answer by Phil Nash for Detect a file copy in progressPhil Nash2009-12-08T18:09:41Z2009-12-08T18:09:41Z<p>As Tim says you can't detect a copy operation exactly. A copy is simply a series of reads and writes.
You can detect file open and close operations, although detecting if a file is open for writing is a little more involved.
Either way, as Tim rightly points out, again, doing it for the whole system would be very expensive as system files, for example, are being opened, written to, and closed all the time.</p>
<p>If you can limit it to specific folders it's more manageable.
If you can give us more information about your intent we can probably advise further.</p>
http://stackoverflow.com/questions/1867911/tdd-does-it-get-in-the-way-of-good-api-design/1867960#18679607Answer by Phil Nash for TDD: Does it get in the way of good API design?Phil Nash2009-12-08T16:08:44Z2009-12-08T16:08:44Z<p>Most of the things you have listed as disadvantages of TDD are considered by many to be elements of <em>good</em> design.</p>
<p>If particular note the idea of something being passed in instead of something the method should "just know" - the latter often leading to singletons or other anti-cohesive designs.</p>
<p>While it may be true that you may end up with a design where some aspects are <em>only</em> there to support testability this is not necessarily a bad thing.</p>
<p>As a rule, though, if you have to rethink your design to make it testable you will general arrive at a design that is <em>better</em> in terms of cohesiveness and fitness for purpose - while still being flexible in the sense that it can easily be changed to whatever your future needs are through refactoring because you have the tests there to give you the confidence to make changes quickly.</p>
http://stackoverflow.com/questions/325371/programming-languages-comparison-when-to-choose-c-c-c-java-php-python-p/325410#325410Comment by Phil Nash on Programming Languages Comparison: when to choose C, C++, C#, Java, PHP, Python, Perl, Delphi, ...Phil Nash2009-12-21T07:25:58Z2009-12-21T07:25:58Zmemory management is <i>not</i> the problem with C++. It's pretty rare that I write a "delete" these days. Smart pointers make the issue almost moot - but you still have the control when you really need it.
The problem with C++ is too much complexity where it's not needed - largely due to backwards compatibility issues.http://stackoverflow.com/questions/1921232/just-in-time-derivation/1928327#1928327Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-18T16:47:00Z2009-12-18T16:47:00ZThanks, Chris. I think <code>CComObject<></code> is probably one of the first examples I saw of this idiom in use. I don't recall Microsoft ever referring to it as a named idiom, however - and a quick look at the linked article doesn't suggest anything different.http://stackoverflow.com/questions/1921232/just-in-time-derivation/1921952#1921952Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T20:54:05Z2009-12-17T20:54:05ZBetween you and Jonnii I'm convinced this is still a mixin. Thanks for your commentshttp://stackoverflow.com/questions/1921232/just-in-time-derivation/1924467#1924467Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T20:53:30Z2009-12-17T20:53:30ZOk, I'm convinced. I'd still like to differentiate this from a "standard" MI mixin, though. I'm marking this as the accepted answer because it was the Eckel article that convinced me, but technically Itay pushed for Mixin firsthttp://stackoverflow.com/questions/1921232/just-in-time-derivation/1923611#1923611Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T18:47:16Z2009-12-17T18:47:16ZThanks Matthieu. You certainly seem to have grasped the design. And yes it is largely a way of avoiding the diamond inheritance problem without virtual inheritance.
JITI is an interesting name. Not sure if it's really better or worse than mine, although at least has a more pronounceable acronym ;-)http://stackoverflow.com/questions/1921232/just-in-time-derivation/1921952#1921952Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T16:51:55Z2009-12-17T16:51:55ZVery interesting. That does seem to correspond more strongly. I'm not sure <i>I</i> agree with that sites use of mixin, however :-) Heir Class sounds like a more useful term, though. Thanks for the link.http://stackoverflow.com/questions/1921232/just-in-time-derivation/1921952#1921952Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T15:34:24Z2009-12-17T15:34:24ZWhile it certainly shares some aspects of mixins I deliberately ruled that out. From the wikipedia article I linked to (feel from to contradict that - is there an authoritative definition somewhere?) it says, "a mixin is a class that provides a certain functionality to be inherited by a subclass, while not meant for instantiation". On both counts the idiom I'm talking about reverses the situation. It's the generic class that subclasses the specific class (awkward terminology there) and is meant for instantiation. Maybe the base class is the mixin, but that's not what I need the name for.http://stackoverflow.com/questions/1921232/just-in-time-derivation/1921922#1921922Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T15:28:27Z2009-12-17T15:28:27ZThere is certainly some resonance with Decorator, just as there is some with Bridge. But Decorator is specifically a runtime thing and is intended to be alternative to a subclassing approach. Also decorator's strength is it allows you to provide numerous decorations, whereas my approach only does one at a time - although I could envisage a generalised mixin-holder template that might achieve that.
Again, either way, it's an idiom level name I'm looking for - not pattern level.http://stackoverflow.com/questions/1921232/just-in-time-derivationComment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T15:24:53Z2009-12-17T15:24:53Z@gf What I'm actually doing in this case is providing the implementation in the derived class for some methods of an interface that the base class derives from. To be generic the implementation must be orthogonal to the base class by definition (hence the ref count example).http://stackoverflow.com/questions/1921232/just-in-time-derivation/1921637#1921637Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T13:33:36Z2009-12-17T13:33:36ZScott's article is about CRTP. This is about the "inverse" of CRTP (ie <code>template<class T>struct Derived : T{};</code> vs <code>struct Derived : public Base<Derived>{};</code>)http://stackoverflow.com/questions/1921232/just-in-time-derivation/1921555#1921555Comment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T13:26:05Z2009-12-17T13:26:05Z+1 for suggesting the pimp idiom :-) If we did have to coin the name here I like that one. Unfortunately I'd also have to reject it as there's too much scope for confusion with the pImpl idiom ;-) wrt Bridge, see my response to gf's comments.http://stackoverflow.com/questions/1921232/just-in-time-derivationComment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T13:24:22Z2009-12-17T13:24:22Z@gf I hadn't really thought about it in Bridge terms. I can certainly see elements of Bridge in there, but I'm not sure I'd really say that's what it is. Either way it's the technique of <i>implementing</i> this that is interesting (at least to me). To put it another way - what would you call the class that does the work (I called it ImplementsRC in the specific example, but if you wanted to generalise...)? I don't think you'd call it Bridge.http://stackoverflow.com/questions/1921232/just-in-time-derivationComment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T12:37:27Z2009-12-17T12:37:27Z@Andreas - yes, that's pretty much ithttp://stackoverflow.com/questions/1921232/just-in-time-derivationComment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T12:32:46Z2009-12-17T12:32:46Z@Andreas - With CRTP it's the base class that is a template, where the template argument is the type of the derived class. With the idiom I described, its the derived class that's a template where the template argument is the type of the base class.http://stackoverflow.com/questions/1921232/just-in-time-derivationComment by Phil Nash on Just-In-Time DerivationPhil Nash2009-12-17T12:30:44Z2009-12-17T12:30:44ZActually it doesn't even use CRTP. I mentioned CRTP here because it seems like the reverse of CRTP.