User quamrana - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:32:52Z http://stackoverflow.com/feeds/user/4834 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/291740/how-do-i-split-a-huge-text-file-in-python 5 How do I split a huge text file in python quamrana 2008-11-14T23:12:14Z 2009-11-18T10:49:04Z <p>I have a huge text file (~1GB) and sadly the text editor I use won't read such a large file. However, if I can just split it into two or three parts I'll be fine, so, as an exercise I wanted to write a program in python to do it. </p> <p>What I think I want the program to do is to find the size of a file, divide that number into parts, and for each part, read up to that point in chunks, writing to a <em>filename</em>.nnn output file, then read up-to the next line-break and write that, then close the output file, etc. Obviously the last output file just copies to the end of the input file.</p> <p>Can you help me with the key filesystem related parts: filesize, reading and writing in chunks and reading to a line-break?</p> <p>I'll be writing this code test-first, so there's no need to give me a complete answer, unless its a one-liner ;-)</p> http://stackoverflow.com/questions/1748827/virtual-tables-are-undefined/1749091#1749091 0 Answer by quamrana for Virtual tables are undefined quamrana 2009-11-17T14:00:15Z 2009-11-17T14:06:41Z <p>I think that where you are using <code>vector</code> you should be using <code>std::vector&lt;Land*&gt;</code>:</p> <pre><code>class Trip { private: std::vector&lt;Land*&gt; *l; // vector of pointers to Land public: explicit Trip(std::vector&lt;Land*&gt; *_l); void accept(Visitor *v); }; </code></pre> <p>and</p> <pre><code>void Trip::accept(Visitor *v) { for (unsigned i = 0; i&lt; l-&gt;size(); i++) { l-&gt;at(i)-&gt;accept(v); // . changed to -&gt; } } </code></pre> <p>and</p> <pre><code>int main() { England england; Russia russia; std::vector&lt;Land*&gt; trip_plan; trip_plan.push_back(&amp;england); // push_back pointers trip_plan.push_back(&amp;russia); trip_plan.push_back(&amp;england); Trip my_trip(&amp;trip_plan); Visitor me; my_trip.accept(&amp;me); return 0; } </code></pre> <p>You need to use <code>&lt;Land*&gt;</code> so that you don't slice <code>england</code> and <code>russia</code> into instances of <code>Land</code>. Also, you might think about using an iterator in <code>Trip::accept</code> next time.</p> http://stackoverflow.com/questions/1735137/liskov-substitution-principle-no-overriding-virtual-methods/1735897#1735897 1 Answer by quamrana for Liskov substitution principle - no overriding/virtual methods? quamrana 2009-11-14T22:55:07Z 2009-11-14T22:55:07Z <p>I think that you're literally correct in the way you describe the principle and only overriding pure virtual, or abstract methods will ensure that you don't violate it.</p> <p>However, if you look at the principle from a client's point of view, that is, a method that takes a reference to the base class. If this method cannot tell (and certainly does not attempt to and does not need to find out) the class of any instance that is passed in, then you are also not violating the principle. So it may not matter that you override a base class method (some sorts of decorators might do this, calling the base class method in the process).</p> <p>If a client seems to need to find out the class of an instance passed in, then you're in for a maintenance nightmare, as you should really just be adding new classes as part of your maintenance effort, not modifying an existing routine. (see also <a href="http://en.wikipedia.org/wiki/Open/closed%5Fprinciple" rel="nofollow">OCP</a>)</p> http://stackoverflow.com/questions/1728477/thread-queue-vs-serial-performance/1729762#1729762 0 Answer by quamrana for Thread & Queue vs Serial performance quamrana 2009-11-13T15:04:29Z 2009-11-13T15:04:29Z <p>I watched the presentation that Dave Kirby linked to and tried the example counter which takes more that twice as long to run in two threads:</p> <pre><code>import time from threading import Thread countmax=100000000 def count(n): while n&gt;0: n-=1 def main1(): count(countmax) count(countmax) def main2(): t1=Thread(target=count,args=(countmax,)) t2=Thread(target=count,args=(countmax,)) t1.start() t2.start() t1.join() t2.join() def timeit(func): start = time.time() func() end=time.time()-start print ("Elapsed Time: {0}".format(end)) if __name__ == '__main__': timeit(main1) timeit(main2) </code></pre> <p>Outputs:</p> <pre><code>Elapsed Time: 21.5470001698 Elapsed Time: 55.3279998302 </code></pre> <p>However, if I change Thread for Process:</p> <pre><code>from multiprocessing import Process </code></pre> <p>and</p> <pre><code>t1=Process(target .... </code></pre> <p>etc. I get this output:</p> <pre><code>Elapsed Time: 20.5 Elapsed Time: 10.4059998989 </code></pre> <p>Now its as if my Pentium CPU has two cores, I bet its the hyperthreading. Can anyone try this on their two or four core machine and run 2 or 4 threads?</p> <p>See the python 2.6.4 documentation for <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">multiprocessing</a></p> http://stackoverflow.com/questions/1661587/how-to-call-overrided-methods-in-a-subclass-potential-candidate-for-refactoring/1670811#1670811 1 Answer by quamrana for How to call overrided methods in a subclass? Potential candidate for refactoring quamrana 2009-11-03T23:24:05Z 2009-11-04T13:31:49Z <p>When you have this:</p> <pre><code>void fooBar(SuperClass obj) { obj.doSomething(); } </code></pre> <p>then the <strong>compile-time</strong> type of <code>obj</code> is <code>SuperClass</code>. This means that the compiler is going to check that <code>SuperClass</code> has a <code>doSomething()</code> method.<br> At <strong>runtime</strong> you can substitute a subclass of <code>SuperClass</code>, this is the <em><a href="http://en.wikipedia.org/wiki/Liskov%5Fsubstitution%5Fprinciple" rel="nofollow">Liskov Substitution Principle</a></em>. Method <code>foobar()</code> does not know, and should not know, what the runtime type of <code>obj</code> is, only that it derives from <code>SuperClass</code> and so <code>doSomething()</code> can be called. </p> <p>As to your example:</p> <pre><code>fooBar( new SubClassSpecial1() ); </code></pre> <p>In this case you happen to know that the <strong>runtime</strong> type of the parameter is <code>SubClassSpecial1</code> which specifically overrides <code>doSomething()</code>. <em>In all cases the right method is called.</em></p> <p>A word about refactoring. You may want to consider refactoring your hierarchy.<br> Your base class <code>SuperClass</code> should define <code>doSomething()</code> as abstract. Your three classes that need the same implementation of <code>doSomething()</code> should inherit it from an intermediate base class which has that specific implementation. Your two special classes should inherit directly from <code>SuperClass</code> and have their own implementation of <code>doSomething()</code>.</p> http://stackoverflow.com/questions/1645324/is-it-a-good-practice-to-always-create-a-cpp-for-each-h-in-a-c-project/1645464#1645464 1 Answer by quamrana for Is it a good practice to always create a .cpp for each .h in a C++ project ? quamrana 2009-10-29T17:52:20Z 2009-10-29T18:00:19Z <p>Its really horses for courses:</p> <ul> <li>Header only classes: eg template classes</li> <li>Header and cpp: separates declaration from implementation.</li> <li>cpp only: your main() can live in one of these.</li> </ul> <p>Header file only source code is sometimes the only way of writing re-useable templates. See <a href="http://www.boost.org/" rel="nofollow">boost</a> for plenty of examples of this.</p> <p>Header and cpp is more 'normal'. Its separates the declaration from the implementation and can speed up compilation when the compiler doesn't have to read implementations loads of times. You might want to start here and then see how the implementation goes and if the cpp file become empty you can delete it.<br /> Another point here is that you will have your <code>#include "foo.h"</code> at the top of <code>foo.cpp</code> to prove that anyone else can do this and not have compiler errors.</p> <p>Cpp only files. main() can live here, and I've put cppUnit test classes in files like this.</p> http://stackoverflow.com/questions/1639393/how-do-i-use-member-functions-of-constant-arrays-in-c/1639465#1639465 -1 Answer by quamrana for How do I use member functions of constant arrays in C++? quamrana 2009-10-28T19:15:20Z 2009-10-28T19:15:20Z <p>Also, beware of initialisation in a header file. You risk offending the linker.<br /> You should have:</p> <p>prog.h:</p> <pre><code>extern const string c_strExample1; extern const string c_strExample2; extern const string c_astrExamples[]; </code></pre> http://stackoverflow.com/questions/1636447/load-an-extern-c-library-into-an-existing-c-project-f-e-ffmpeg-libavcodec-s/1636560#1636560 1 Answer by quamrana for Load an extern C-library into an existing C++-Project (f.e. ffmpeg/libavcodec - step by step) quamrana 2009-10-28T11:01:07Z 2009-10-28T11:01:07Z <p>To include a source code library into your existing project you have a number of options:</p> <ul> <li><p>Compile to a static library</p></li> <li><p>Compile to a dynamic library</p></li> <li><p>Compile to object files</p></li> </ul> <p>So, yes, you do need to compile their source code, and you need to change your toolchain to include the results into your program.</p> http://stackoverflow.com/questions/1629597/python-sth-like-parametrized-inheritance/1629639#1629639 6 Answer by quamrana for python: sth like parametrized inheritance quamrana 2009-10-27T09:28:19Z 2009-10-27T09:28:19Z <p>Python is more flexible than you give it credit.</p> <p>I think you want something like this:</p> <pre><code>class B(object): def f(self,x): func(x, self.param) class X(B): param=1 class Y(B): param=2 </code></pre> <p><strong>NB</strong> </p> <ul> <li>note the method f has self as the first parameter.</li> <li>the param= lines are class variables.</li> </ul> http://stackoverflow.com/questions/102535/what-can-you-use-python-generator-functions-for 12 What can you use Python generator functions for? quamrana 2008-09-19T14:58:49Z 2009-10-24T19:12:18Z <p>I'm starting to learn Python and I've come across generator functions, those that have a yield statement in them. I want to know what types of problems that these functions are really good at solving.</p> http://stackoverflow.com/questions/1582722/do-unit-tests-target-multiple-cores-in-visual-studio/1582745#1582745 0 Answer by quamrana for Do Unit Tests target Multiple Cores in Visual Studio? quamrana 2009-10-17T17:34:29Z 2009-10-17T17:34:29Z <p>You don't mention what test framework you are using, but if you are talking about cppUnit or the like, then its (3), the framework that doesn't target multiple cores at all. </p> <p>You would have to put some work in to get a unit test application based on an xUnit framework to target multiple cores, (ie uses multiple threads), or write your own framework that does it.</p> http://stackoverflow.com/questions/120926/why-does-python-pep-8-strongly-recommend-spaces-over-tabs-for-indentation 6 Why does Python pep-8 strongly recommend spaces over tabs for indentation? quamrana 2008-09-23T13:20:34Z 2009-10-08T14:18:53Z <p>I see on Stack Overflow and <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP 8</a> that the recommendation is to use spaces only for indentation in Python programs. I can understand the need for consistent indentation and I have felt that pain.</p> <p>Is there an underlying reason for spaces to be preferred? I would have thought that tabs were far easier to work with.</p> http://stackoverflow.com/questions/1519839/solid-liskov-substitution-principle/1530529#1530529 0 Answer by quamrana for SOLID Liskov Substitution Principle quamrana 2009-10-07T09:31:06Z 2009-10-07T09:31:06Z <p>You have to define the <code>square</code> and <code>triangle</code> classes and implement their methods - and you have to be able to construct them, as you have indicated:</p> <pre><code>var x = new square(); </code></pre> <p>Most, if not all other uses of <code>square</code> and <code>triangle</code> should be through the base class <code>figure.</code></p> <p>As to <strong>LSP</strong>, this refers to other methods in other classes which take <code>figure</code> as a parameter:</p> <pre><code>other_method(figure fig); </code></pre> <p>This method should be happy about working, whether in fact a <code>square</code> or a <code>triangle</code> instance is passed to it, and it should not have to try to discover the actual class in order to work.</p> http://stackoverflow.com/questions/1392956/what-is-the-best-description-of-tdd 1 What is the best description of TDD? quamrana 2009-09-08T09:28:21Z 2009-10-02T12:07:04Z <p>There are lots of questions on SO about TDD, and a lot of misconceptions. Where can I point people to when trying to answer questions?</p> http://stackoverflow.com/questions/1475520/unit-testing-code-coverage-do-you-have-100-coverage/1502474#1502474 0 Answer by quamrana for Unit testing code coverage - do you have 100% coverage? quamrana 2009-10-01T07:49:06Z 2009-10-01T07:49:06Z <p>Yes, I have had projects that have had 100% line coverage. See my answer to a similar <a href="http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/100896#100896">question.</a></p> <p>You <strong>can</strong> get 100% <em>line</em> coverage, but as others have pointed out here on SO and elsewhere on the internet its maybe only a minimum. When you consider path and branch coverage, there's a lot more work to do.</p> <p>The other way of looking at it is to try to make your code so simple that its easy to get 100% line coverage.</p> http://stackoverflow.com/questions/1487815/what-could-be-causing-this-crash/1487856#1487856 6 Answer by quamrana for What could be causing this crash? quamrana 2009-09-28T15:58:55Z 2009-09-28T15:58:55Z <p>Off the top of my head, without seeing any code (see comments on your question) I would suggest a rogue pointer which normally stomps on something you don't notice, but introducing a new member makes it stomp on something you do notice.</p> <p>Try adding members of different sizes, or more (unused) <code>int</code> members, or maybe a string in the form: <code>const char xxx[50];</code> to reserve more space.</p> http://stackoverflow.com/questions/1468110/tdd-framework-for-c/1470977#1470977 1 Answer by quamrana for TDD framework for C quamrana 2009-09-24T11:03:30Z 2009-09-24T11:03:30Z <p>You can use any C or C++ unit testing framework. Its easy enough to call C functions from C++.</p> <p>My opinion is that you want to have as little output as possible from your tests. ie if everything is OK, it should print <code>'100% passed'</code>. Otherwise it should only print out details of test failures.</p> <p>see <a href="http://xprogramming.com/software" rel="nofollow">xprogramming.com</a>, scroll down to the Unit Testing table and look for the <code>C Language</code> or <code>C++</code> frameworks. The most 'standard' it seems is cppUnit.</p> http://stackoverflow.com/questions/1451861/creating-an-array-of-zero-width-and-zero-height/1452020#1452020 0 Answer by quamrana for Creating an array of zero width and zero height!? quamrana 2009-09-20T21:10:19Z 2009-09-21T08:16:20Z <p>You might want something like this:</p> <pre><code>#include &lt;exception&gt; class FloatArray { public: FloatArray():arr(new float[0]){} FloatArray(int width, int height) { arr=new float[height*width]; mWidth=width; mHeight=height; } ~FloatArray(){ delete [] arr; } float operator()(int xindex, int yindex) { if (!isValid(xindex,yindex)) { throw std::exception(); // Some suitable exception } return arr[yindex*mWidth+xindex]; } bool isValid(int xindex, int yindex); private: float* arr; int mWidth; int mHeight; }; </code></pre> <p>Points to note:<br /> I've left <code>isValid()</code> without a definition as an exercise.<br /> The dtor is fine with <strong>EDIT:</strong> <code>delete [] arr;</code> whichever ctor was called.<br /> I've used <code>operator()</code> as the accessor.<br /> You could throw something else apart from std::exception.<br /> There are no setter methods - left as an exercise.<br /> I've put in one deliberate error that I know of. </p> http://stackoverflow.com/questions/1451397/efficiently-comparing-a-vector-to-a-series-of-numbers-in-java/1451449#1451449 1 Answer by quamrana for Efficiently comparing a vector to a series of numbers in Java quamrana 2009-09-20T16:56:01Z 2009-09-20T16:56:01Z <p>I would guess that it wouldn't be too expensive to just keep one vector around with your target numbers in, then populate a new one with your newly generated numbers, then iterate through them comparing. It may be that you're likely to have a failed comparison on the first number, so it only costs you one compare to detect failure.</p> <p>It seems that you're going to have to collect your six numbers which ever method you use, so just comparing integers won't be too expensive.</p> <p>Whatever you do, please <strong>measure!</strong></p> <p>You should generate at least two algorithms for your comparison task and compare their performance. Pick the fastest.</p> <p>However, maybe the first step is to compare the run time of your mathematical process to the comparison task. If your mathematical process runtime is 100 times or more than the comparison, you just have to pick something simple and don't worry.</p> http://stackoverflow.com/questions/1423308/what-is-the-best-design-for-polling-a-modem-for-incoming-data/1424253#1424253 0 Answer by quamrana for What is the best design for polling a modem for incoming data? quamrana 2009-09-14T22:39:19Z 2009-09-14T22:39:19Z <p>I find I can't remember much of the AT command set related to SMS. Andre Miller's answer seems to ring a few bells. Anyway you should read the documentation very carefully, I'm sure there were a few gotchas.</p> <p>My recommentation for polling is at least every 5 seconds - this is just for robustness and responsiveness in the face of disconnection.</p> <p>I used a state machine to navigate between initialisation, reading and deleting messages.</p> http://stackoverflow.com/questions/1418777/vba-error-bubble-up/1418847#1418847 1 Answer by quamrana for VBA Error "Bubble Up" quamrana 2009-09-13T21:11:53Z 2009-09-13T21:11:53Z <p>I'm not sure what the default error handling of VBA is, but since its Visual Basic for Applications, and those applications include things like excel and word, I assume just a dialog box will appear which will not be helpful to the user.</p> <p>I assume that the author has been bitten by code not handling errors so he now recommends all procedures to handle errors.</p> <p>The full answer is that you have to be aware of every error that can occur and to have code in place to handle it, whether it is as low as possible (where you may not know what to do), or as high as possible (which means less effort writing error handling code, but not knowing why the error occurred), or strategically (which is just in the right places where you should be able to recover from most common errors) or just everywhere (which may be just too much development effort).</p> http://stackoverflow.com/questions/1418506/how-to-correctly-pass-xml-strings-between-a-custom-tcp-client-server/1418817#1418817 0 Answer by quamrana for How to correctly pass XML strings between a custom TCP client / server? quamrana 2009-09-13T20:56:32Z 2009-09-13T20:56:32Z <p>There are three ways I can think of:</p> <ul> <li>Describe the length out of band: This could be a little like an HTTP header: CR deliminate a length in ascii, then all following bytes are counted in the length.</li> <li>Null terminate the string. The Null char is unique.</li> <li>CR or LF terminate the node and a line based protocol can read the XML.</li> </ul> <p>As mentioned elsewhere, make sure your XML conforms to standards so that either side can be swapped out and then old code won't have to be tweaked to conform.</p> http://stackoverflow.com/questions/1415680/array-of-const-char/1415916#1415916 0 Answer by quamrana for Array of const char* quamrana 2009-09-12T19:29:58Z 2009-09-12T19:29:58Z <p>Bringing everything together, you can write your program like this:</p> <pre><code>#include &lt;sstream&gt; #include &lt;iostream&gt; std::string intToString(long i) { std::stringstream ss; std::string s; ss &lt;&lt; i; s = ss.str(); return s; } int main(){ const char* av[5]; // declared but not initialised std::string sav[5]; // std::string has a ctor, so they're initialised for(int i=0;i&lt;5;i++){ av[i]=""; // initialise each const char* } for(int i=0;i&lt;5;i++){ sav[i] = intToString(i); // Keep the original in sav[] av[i] = sav[i].c_str(); // point to each string's contents for(int j=0;j&lt;5;j++){ std::cout &lt;&lt; j &lt;&lt; " : " &lt;&lt; av[j] &lt;&lt; std::endl;} } } </code></pre> <p>Note that your program prints every av[] after each av[] is re-initialised.</p> <p>Note that memory management is handled by sav[]</p> http://stackoverflow.com/questions/1412348/is-it-possible-to-return-a-derived-class-from-a-base-class-method-in-c/1412632#1412632 1 Answer by quamrana for Is it possible to return a derived class from a base class method in C++? quamrana 2009-09-11T18:41:54Z 2009-09-11T18:41:54Z <p>As others have pointed out, the code sample you have <em>can</em> be made to work, but that you probably mean to return a pointer to the base class from 'f'.</p> <p>In your elaboration, you mention that the bounding box is a subclass of shape, but there is a problem:</p> <pre><code>class Shape{ virtual Shape* getBoundingBox() = 0; }; class Square: public Shape{ virtual Shape* getBoundingBox(); }; class BBox: public Shape{ virtual Shape* getBoundingBox(); // Whoops! What will BBox return? }; </code></pre> <p>Lets move some of the responsibilities around:</p> <pre><code>class Shape{ virtual void draw() = 0; // You can draw any shape }; class BBox: public Shape{ virtual void draw(); // This is how a bounding box is drawn }; class BoundedShape: public Shape{ virtual BBox* getBoundingBox() = 0; // Most shapes have a bounding box }; class Square: public BoundedShape{ virtual void draw(); virtual BBox* getBoundingBox(); // This is how Square makes its bounding box }; </code></pre> <p>Your application will now probably need to hold collections of <code>BoundedShape*</code> and occasionally ask one for its <code>BBox*</code>.</p> http://stackoverflow.com/questions/1392956/what-is-the-best-description-of-tdd/1392975#1392975 0 Answer by quamrana for What is the best description of TDD? quamrana 2009-09-08T09:31:58Z 2009-09-08T09:31:58Z <p>When I am describing TDD to others I go to Phlip Plumlee's (phlip cpp) <a href="http://groups.google.co.uk/group/comp.programming/msg/41cc6f0348c75ded?hl=en" rel="nofollow" title="Long article on TDD">description</a> in news groups. The link is a long article and includes a discussion on Simplicity, a description of the TDD cycle and even an example in C++ using cppUnit.</p> http://stackoverflow.com/questions/1389337/singletons-via-static-instance-in-c-into-source-or-into-header-files/1389567#1389567 1 Answer by quamrana for Singletons via static instance in C++ -- into source or into header files? quamrana 2009-09-07T14:01:27Z 2009-09-07T14:01:27Z <p>I've tried the code that the OP posted with VS2008 in four ways and there doesn't seem to be a problem with the static instance of <code>MyClass</code> inside <code>MyClass::Instance()</code>.</p> <ol> <li><code>Instance()</code> is defined in MyClass.cpp: This is the normal way everything is fine.</li> <li><code>Instance()</code> is defined only inside the class declaration. This is the alternative and everything is fine.</li> <li><code>Instance()</code> is defined <code>inline</code> outside the class, but in the header and everything is fine.</li> <li>as 3. but without the <code>inline</code> and the linker says there are mutiple definitions of <code>Instance()</code></li> </ol> <p>I think that the book author is concerned with 4. above and knows that the static instance of MyClass will be taken care of in a program that compiles and links.</p> http://stackoverflow.com/questions/1388469/is-there-a-working-c-refactoring-tool/1388629#1388629 1 Answer by quamrana for Is there a working C++ refactoring tool? quamrana 2009-09-07T10:20:21Z 2009-09-07T10:20:21Z <p>Currently I can't recommend <em>any</em> refactoring tool for C++, certainly not for large code bases of 100k lines and above. I've be hoping this will change, like the OP, and I hope one day there will be something. I fear that the language itself might have to change significantly before we see any really good tools.</p> <p>btw, has SlickEdit dropped its refactoring features?</p> http://stackoverflow.com/questions/1388065/how-to-effectively-delete-c-objects-stored-in-multiple-containers-autoptr/1388473#1388473 2 Answer by quamrana for How to effectively delete C++ objects stored in multiple containers? auto_ptr? quamrana 2009-09-07T09:39:10Z 2009-09-07T09:47:55Z <p>I guess you need a master list or set of objects, either held by value if you can afford to copy them, or more likely held by pointer so you can copy the pointer and put them into other collections.</p> <pre><code>std::list&lt;Foo*&gt; Master; </code></pre> <p>These other collections (<code>map1</code> and <code>map2</code> in your example) can have these pointers inserted and removed at any time. When finally you want to delete everything, you can probably just delete the maps, or let them go out of scope, or ignore them, and just once, go back to the master list and iterate through that deleting the pointers that are found.</p> http://stackoverflow.com/questions/1380443/can-tdd-be-a-valid-alternative-to-overkill-data-validation/1386807#1386807 1 Answer by quamrana for Can TDD be a valid alternative to overkill data validation? quamrana 2009-09-06T21:45:12Z 2009-09-06T21:45:12Z <p>My opinion is that in the first scenario, two of your <em>Cons</em> outweigh everything else:</p> <ul> <li>It's costly to always perform checks that most of the time shouldn't be needed.</li> <li>More code is being written and hence in need of maintenance.</li> </ul> <p>Also, technically TDD has no bearing on this question, because it is not a testing technique. More later...</p> <p>To mitigate the <em>Cons</em> I would strongly advocate (as I think you say) splitting the code into an <em>outside</em> and an <em>inside</em>: The outside is where all the validation occurs. Hopefully this is but a thin wrapper around the inside, to prevent <a href="http://en.wikipedia.org/wiki/Garbage%5FIn,%5FGarbage%5FOut" rel="nofollow" title="Garbage In, Garbage Out">GIGO</a>. Once inside, data never needs to be validated again.</p> <p>As for TDD, I would strongly advocate (as you are now doing) employing it to <strong>develop</strong> your code, with the added benefit of leaving a trail of tests that become a regression test suite. Now you will naturally develop your <em>outside</em> code to perform robust validation, with the promise of easily adding any checks that you might initially forget. Your <em>inside</em> code can be developed assuming it will only handle valid data, but TDD will still give you the confidence that it will function to spec.</p> <p>I'm saying that I would go with the second approach, as I've described, independently of whether I'm developing with TDD, or not (but TDD is always my first choice).</p> http://stackoverflow.com/questions/1380585/map-of-vectors-in-stl/1380639#1380639 2 Answer by quamrana for map of vectors in STL? quamrana 2009-09-04T17:44:45Z 2009-09-04T17:51:38Z <p>Using the typedefs from fbrereton you can also do this:</p> <pre><code>typedef std::vector&lt;MyClass&gt; MyClassSet; typedef std::map&lt;int, MyClassSet&gt; MyClassSetMap; MyClassSetMap map; map[10]=MyClassSet(); </code></pre> <p>You can use <code>operator[]</code> instead of <code>insert().</code> This saves on the line noise a bit.</p> http://stackoverflow.com/questions/1747416/interface-hierarchy-design-pattern/1747435#1747435 Comment by quamrana on Interface hierarchy design pattern? quamrana 2009-11-17T13:34:33Z 2009-11-17T13:34:33Z -1: This doesn't seem to be a helpful answer http://stackoverflow.com/questions/1747942/trouble-with-send-and-recv Comment by quamrana on Trouble with Send and Recv quamrana 2009-11-17T12:28:14Z 2009-11-17T12:28:14Z @ej: Please don't use <code>using namespace std;</code> inside header files. This can lead to ambiguities and pain later on. And, yes, you will need to write things like <code>std::string</code> in your headers. http://stackoverflow.com/questions/1741546/how-to-input-special-character-in-cmd/1741555#1741555 Comment by quamrana on How to input special character in cmd? quamrana 2009-11-16T11:45:59Z 2009-11-16T11:45:59Z I assume that <code>^</code> also needs escaping. You should add that to your list. http://stackoverflow.com/questions/1735137/liskov-substitution-principle-no-overriding-virtual-methods/1735897#1735897 Comment by quamrana on Liskov substitution principle - no overriding/virtual methods? quamrana 2009-11-15T22:14:10Z 2009-11-15T22:14:10Z @aip.cd.aish: You are not going to easily solve this if you think about this in terms of implementations. Better to think in terms of what the client expects. There are lots of things that you <i>can</i> do in an implementation that don't violate the expectations of a client, especially if a client has low or no expectations. Easy examples are the <code>GetHasCode()</code> or <code>Shape::GetArea()</code> in which its difficult for the client to detect faults. A Harder example is with Square and Rect where to conform you might have only Rectangle having <code>setHeight</code> and <code>setWidth</code> and only Square having <code>setSize</code>. http://stackoverflow.com/questions/1735137/liskov-substitution-principle-no-overriding-virtual-methods/1735897#1735897 Comment by quamrana on Liskov substitution principle - no overriding/virtual methods? quamrana 2009-11-14T23:32:59Z 2009-11-14T23:32:59Z @aip.cd.aish: Its not a violation if clients can't tell, and it is a violation if a client has to employ special logic to fix things. Its much better if methods of classes either don't care what their type is, or can safely assume that their type is the one on which the method was originally defined. http://stackoverflow.com/questions/1735137/liskov-substitution-principle-no-overriding-virtual-methods/1735153#1735153 Comment by quamrana on Liskov substitution principle - no overriding/virtual methods? quamrana 2009-11-14T23:16:37Z 2009-11-14T23:16:37Z I think that queen3 means that many classes will need to override <code>GetHashCode()</code>, but clients that call it (like hash tables) won't know that they're not calling the method defined for Object. Since the contract is still met, then no violation has taken place. However, with the Square/Rectangle example, clients might be able to tell what the class is of the instance they have been passed, or might fail in some way, so a violation <i>has</i> taken place. http://stackoverflow.com/questions/1735137/liskov-substitution-principle-no-overriding-virtual-methods/1735149#1735149 Comment by quamrana on Liskov substitution principle - no overriding/virtual methods? quamrana 2009-11-14T22:57:14Z 2009-11-14T22:57:14Z @Omu - I think you mean that existing and future clients of BASE should keep on referring to BASE. Other parts of the code may very well need to refer to SUB1 and/or SUB2. http://stackoverflow.com/questions/1730261/list-management-python/1730322#1730322 Comment by quamrana on list management python quamrana 2009-11-13T17:27:23Z 2009-11-13T17:27:23Z @inspectorG4dget: Could <code>'http:&#47;&#47;naver.com'</code> appear after a <code>?</code> in one of the urls? http://stackoverflow.com/questions/1730261/list-management-python/1730322#1730322 Comment by quamrana on list management python quamrana 2009-11-13T16:37:26Z 2009-11-13T16:37:26Z This is the non-list comprehension version. Does it work by coincidence? Could <code>http:&#47;&#47;www.naver.com</code> appear later on in a url? http://stackoverflow.com/questions/1730261/list-management-python/1730291#1730291 Comment by quamrana on list management python quamrana 2009-11-13T16:33:06Z 2009-11-13T16:33:06Z @Claudiu: -1 Not sure this can work. Its seems that each member of oldUrls is passed as a parameter to str.startswith. What is str? http://stackoverflow.com/questions/1727307/refactor-refactor-refactor-your-code-what-does-this-mean-exactly-and-why-do-it/1727405#1727405 Comment by quamrana on "refactor refactor refactor your code." What does this mean exactly and why do it ? quamrana 2009-11-13T16:06:53Z 2009-11-13T16:06:53Z @staticsan: -1 This may be what you see happening where you work, but it far from best practise and far from the definition. http://stackoverflow.com/questions/1701211/python-return-the-index-of-the-first-element-of-a-list-which-makes-a-passed-func/1701242#1701242 Comment by quamrana on Python: return the index of the first element of a list which makes a passed function true quamrana 2009-11-09T14:25:29Z 2009-11-09T14:25:29Z Can you edit your answer to be more like the OP's function that has a list and function as parameters? http://stackoverflow.com/questions/1697374/is-it-possible-pass-a-function-as-a-parameter-in-c Comment by quamrana on is it possible pass a function as a parameter in c ? quamrana 2009-11-08T18:10:09Z 2009-11-08T18:10:09Z Duplicate of <a href="http://stackoverflow.com/questions/9410/how-do-you-pass-a-function-as-a-parameter-in-c" rel="nofollow" title="how do you pass a function as a parameter in c">stackoverflow.com/questions/9410/&hellip;</a> http://stackoverflow.com/questions/1645324/is-it-a-good-practice-to-always-create-a-cpp-for-each-h-in-a-c-project/1645417#1645417 Comment by quamrana on Is it a good practice to always create a .cpp for each .h in a C++ project ? quamrana 2009-10-30T13:32:00Z 2009-10-30T13:32:00Z @MSalters: You mean that a class <b>declaration</b> must be in a header. http://stackoverflow.com/questions/1642923/design-with-purevirtual-c/1642987#1642987 Comment by quamrana on Design with (pure)virtual C++ quamrana 2009-10-29T15:23:23Z 2009-10-29T15:23:23Z @Goz: -1: You start off well enough talking about an abstract base class, but then you blow it by using the preprocessor! You should have either left out the explanation of selecting between Package and Disk, or gone on to using a factory so that very little code knows about either, but only knows about the abstract base class.