User Martin York - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:25:05Z http://stackoverflow.com/feeds/user/14065 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1940652/dynamically-inserting-strings-to-a-stdmap/1941250#1941250 3 Answer by Martin York for Dynamically inserting strings to a std::map Martin York 2009-12-21T16:50:38Z 2009-12-21T21:48:45Z <p>You have two files.<br> {X} and {X}.a</p> <p>You want to search some directory space and store which ones you find.</p> <p>Let us store the information of a find in a std::pair.<br> The first value represents if we find {x} the second value represents if we find {X}.a<br> These pair values are stored in a map using {X} as the index into the map.</p> <pre><code>#include &lt;memory&gt; #include &lt;string&gt; #include &lt;map&gt; typedef std::pair&lt;bool,bool&gt; FileInfo; typedef std::map&lt;std::string,FileInfo&gt; FileMapInfo; FileMapInfo fileMapInfo; void found(std::string const&amp; fileName) { // baseName: We will use this to lookup if either file is found. // The extension ".a" is removed from this name. // aExtension: is true if the file ends with ".a" std::string baseName(fileName); bool aExtension(false); std::string::size_type pos = fileName.find_last_of(".a"); if ((pos != std::string::npos) &amp;&amp; (pos == fileName.size()-2)) { // Get the real base baseName = fileName.substr(0,fileName.size() - 2); aExtension = true; } // This looks up the record about the file(s). // If it dies not exist it creates an entry with false,false. FileInfo&amp; fileInfo = fileMapInfo[baseName]; // Now set the appropriate value to true. if (!aExtension) { fileInfo.first = true; } else { fileInfo.second = true; } } int main() { // loop over files. // call found(&lt;fileName&gt;); } </code></pre> http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941364#1941364 6 Answer by Martin York for Always check malloc'ed memory? Martin York 2009-12-21T17:09:40Z 2009-12-21T17:15:32Z <p>I would say No. Using a NULL pointer is going to crash the program (probably).<br> But detecting it and doing something intelligent will be OK and you may be able to recover from the low memory situation.</p> <p>If you are doing a big operation set some global error flag and start unwinding the stack and releasing resources. Hopefully one or more of these resources will be your memory hog and your application will get back to normal.</p> <p>This of course is a C problem and handeled automatically in C++ with the help of exceptions and RAII.<br> As new will not return NULL there is no point in checking.</p> http://stackoverflow.com/questions/1941064/should-i-preallocate-stdstringstream/1941164#1941164 0 Answer by Martin York for Should I preallocate std::stringstream? Martin York 2009-12-21T16:37:21Z 2009-12-21T16:37:21Z <p>More elegant?<br> We have not seen your current code, but from the simple description above it seems fine.</p> http://stackoverflow.com/questions/1939899/how-do-i-make-an-unreferenced-object-load-in-c/1941092#1941092 4 Answer by Martin York for How do I make an unreferenced object load in C++? Martin York 2009-12-21T16:27:15Z 2009-12-21T16:27:15Z <p>It is not exactly clear what the problem is:</p> <p>C++ does not have the concept of static initializers.<br> So one presume you have an object in "File Scope".</p> <ul> <li>If this object is in the global namespace then it will be constructed before main() is called and destroyed after main() exits (assuming it is in the application).</li> <li>If this object is in a namespace then optionally the implementation can opt to lazy initialize the variable. This just means that it will be fully initialized before first use. So if you are relying on a side affect from construction then put the object in the global namespace.</li> </ul> <p>Now a reason you may not be seeing the constructor to this object execute is that it was not linked into the application. This is a linker issue and not a language issue. This happens when the object is compiled into a static library and your application is then linked against the static library. The linker will only load into the application functions/objects that are explicitly referenced from the application (ie things that resolve undefined things in the symbol table).</p> <p>To solve this problem you have a couple of options.</p> <ul> <li>Don't use static libraries. <ul> <li>Compile into dynamic libraries (the norm nowadays).</li> <li>Compile all the source directly into the application.</li> </ul></li> <li>Make an explicit reference to the object from within main.</li> </ul> http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910992#1910992 17 Answer by Martin York for [C++] Why aren't pointers initialized with NULL by default? Martin York 2009-12-15T22:44:53Z 2009-12-19T03:32:37Z <p>We all realize that pointer (and other POD types) should be initialized.<br> The question then becomes 'who should initialize them'.</p> <p>Well there are basically two methods:</p> <ul> <li>The compiler initializes them. </li> <li>The developer initializes them.</li> </ul> <p>Let us assume that the compiler initialized any variable not explicitly initialized by the developer. Then we run into situations where initializing the variable was non trivial and the reason the developer did not do it at the declaration point was he/she needed to perform some operation and then assign.</p> <p>So now we have the situation that the compiler has added an extra instruction to the code that initializes the variable to NULL then later the developer code is added to do the correct initialization. Or under other conditions the variable is potentially never used. A lot of C++ developers would scream foul under both conditions at the cost of that extra instruction.</p> <p>It's not just about time. But also space. There are a lot of environments where both resources are at a premium and the developers do not want to give up either.</p> <p><strong>BUT</strong>: You can simulate the effect of forcing initialization. Most compilers will warn you about uninitialized variables. So I always turn my warning level to the highest level possible. Then tell the compiler to treat all warnings as errors. Under these conditions most compilers will then generate an error for variables that are unused and used and thus will prevent code from being generated.</p> http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931319#1931319 0 Answer by Martin York for Is it good practice to NULL a pointer after deleting it? Martin York 2009-12-18T23:39:13Z 2009-12-18T23:39:13Z <p>My argument against it:</p> <p>It hides real errors.<br> Error that could be exposed with profile tools will now not get caught. Now this is fine for the current version of the code. But later versions may re-expose the error and then generate a real problem.</p> <p>A quick example:</p> <p>Double delete:</p> <pre><code>int* p = createAPointer(); doGoodStuffWithP(p); delete p; p = NULL; ..... doBadStuffWithP(p); // suppose there is a delete in here? </code></pre> <p>There is a bug in doBadStuffWithP() causing a second call to delete.<br> This is now not going to be exposed by testing becuase deleting NULL is not a problem.</p> <p>This probably will not matter to much in version 1.<br> But modifications are done a year latter and p is now re-used adter the delete and the use of p continues after doBadStuffWithP() now you have a potential to use p after it has been deleted. Because we know that testing on version 2 is so much better than testing on version 1.</p> <p>So I think it is a bas idea.<br> Admitadely I prefer to make sure scope kills p so I don't need to make it NULL. </p> <p>But the hding of error scares me and I would prefer to find them in the first place.</p> http://stackoverflow.com/questions/1930081/c-vs-c-code-optimization-for-simple-array-creation-and-i-o/1930233#1930233 1 Answer by Martin York for C vs C++ code optimization for simple array creation and i/o Martin York 2009-12-18T19:29:35Z 2009-12-18T19:29:35Z <p>I would argue that you are not even running the same code.<br> The C code has no error checking and leaks memory on an exception.<br> To be a fare comparison you need to make the C program do what the C++ program is doing.</p> <pre><code>bool errorNumber = 0; // Need a way to pass error information back from the funtion int main(int argc, char **argv) { ...... { vd[i]=random_double(); // // In C++ this logic is implicit with the use of excptions. // Any example where you don't do error checking is not valid. // In real life any code has to have this logic built in by the developer // if (errorNumber != 0) { break; } } ........ free(vd); The cost of freeing the memory is not zero that needs to be factored in. return 0; } </code></pre> http://stackoverflow.com/questions/1929206/destructor-order/1929381#1929381 6 Answer by Martin York for Destructor order Martin York 2009-12-18T16:44:00Z 2009-12-18T19:08:31Z <p>In the code above the destruction order is well defined.<br> The destruction order is the reverse of the creation order.<br> The creation order is the order the members were declared within the class.<br> So in this case:</p> <pre><code>Default Construction: a_: constructed first using default constructor. b_: constructed using a valid a_ passed to the constructor. Destruction: b_: destroyed first. The destructor can use the reference to a As long as the object has not been copied (see below) a_: destroyed second. </code></pre> <p>But you have a potential problem if you make a copy of the object using the copy constructor.</p> <p>The following copy constructor is defined by the compiler:</p> <pre><code>MyObject::MyObject(MyObject const&amp; copy) :a_(copy.a_) ,b_(copy.b_) {} </code></pre> <p>So you may have a potential problem here. As the copy will contain an object 'b_' that contains a reference that was copied from another object. If the other object is destroyed then this 'b_' will have an invalid reference.</p> http://stackoverflow.com/questions/1929094/reading-from-file-certain-lines-at-a-time-in-c-c/1929559#1929559 1 Answer by Martin York for reading from file certain lines at a time in c/c++ Martin York 2009-12-18T17:09:59Z 2009-12-18T17:09:59Z <p>The easiest solution would be to load the file into memory and manipulate it from there:</p> <pre><code>std::vector&lt;std::string&gt; lines; std::string line; while(std::getline(file,line) { lines.push_back(line); } </code></pre> <p>If the file is way to large.<br> Then you need to build an index of the file that tells you exactly where each line starts.</p> <pre><code>std::vector&lt;std::streampos&gt; index; index.push_back(file.tellg()); std::string line; while(std::getline(file,line) { index.push_back(file.tellg()); } file.setg(0); file.clear(); // Resets the EOF flag. </code></pre> <p>Once you have your index. You can jump around the file and read any particular line.</p> <pre><code>int jumpTo = 50; file.seekg(index[jumpTo]); // Jump to line 50. // // Read 50 lines. Do not read past the end // This will set the EOF flag and future reads will fail. for(int loop=0;loop &lt; 50 &amp;&amp; ((jumpTo + loop) &lt; index.size());++loop) { std::string line; std::getline(file,line); } </code></pre> http://stackoverflow.com/questions/1924530/mixing-cout-and-printf-for-faster-output/1924644#1924644 4 Answer by Martin York for mixing cout and printf for faster output Martin York 2009-12-17T21:14:25Z 2009-12-17T21:31:07Z <p>Also note that the C++ stream is synced to the C stream.<br> Thus it does extra work to stay in sync.</p> <p>Another thing to note is to make sure you flush the streams an equal amount. If you continiously flush the stream on one system and not the other that will definately affect the speed of the tests.</p> <p>Before assuming that one is faster than the other you should:</p> <ul> <li>un-sync C++ I/O from C I/O (see sync_with_stdio() ).</li> <li>Make sure the amount of flushes is comparable. </li> </ul> http://stackoverflow.com/questions/1923664/simulating-low-memory-using-c/1924029#1924029 6 Answer by Martin York for Simulating low memory using C++ Martin York 2009-12-17T19:31:01Z 2009-12-17T19:36:20Z <p>Allcoating big blocks is not going to work.</p> <ul> <li>Depending on the OS you are not limited to the actual physical memory and unused large chunks could be potentially just swap out to the disk.</li> <li>Also this makes it very hard to get your memory to fail exactly when you want it to fail.</li> </ul> <p>What you need to do is write your own version of new/delete that fail on command.</p> <p>Somthing like this:</p> <pre><code>#include &lt;memory&gt; #include &lt;iostream&gt; int memoryAllocFail = false; void* operator new(std::size_t size) { std::cout &lt;&lt; "New Called\n"; if (memoryAllocFail) { throw std::bad_alloc(); } return ::malloc(size); } void operator delete(void* block) { ::free(block); } int main() { std::auto_ptr&lt;int&gt; data1(new int(5)); memoryAllocFail = true; try { std::auto_ptr&lt;int&gt; data2(new int(5)); } catch(std::exception const&amp; e) { std::cout &lt;&lt; "Exception: " &lt;&lt; e.what() &lt;&lt; "\n"; } } &gt; g++ mem.cpp &gt; ./a.exe New Called New Called Exception: St9bad_alloc </code></pre> http://stackoverflow.com/questions/1923091/utf-16-codecvt-facet 1 UTF-16 codecvt facet Martin York 2009-12-17T16:51:33Z 2009-12-17T17:38:30Z <p>Extending from this questions about <a href="http://stackoverflow.com/questions/1922713/valid-locale-names">locales</a><br> And described in <a href="http://stackoverflow.com/questions/207662/writing-utf16-to-file-in-binary-mode">this question</a>: What I really wanted to do was install a codecvt facet into the locale that understands UTF-16 files.</p> <p>I could write my own. But I am not a UTF expert and as such I am sure I would get it nearly correct; but it would break at the most inconvenient time. So I was wondering if there are any resources (on the web) of pre-build codecvt (or other) facets that can be used from C++ that are peer reviewed and tested?</p> <p>The reason is the default locale (on my system MAC OS X 10.6) when reading a file just converts 1 byte to 1 wchar_t with no conversion. Thus UTF-16 encoded files are converted into wstrings that contain lots of null ('\0') characters.</p> http://stackoverflow.com/questions/1922713/valid-locale-names 3 Valid Locale Names Martin York 2009-12-17T15:53:25Z 2009-12-17T16:42:29Z <p>How do you find valid locale names?</p> <p>I am currently using MAC OS X.<br> But information about other platforms would also be useful.</p> <pre><code>#include &lt;fstream&gt; #include &lt;iostream&gt; int main(int argc,char* argv[]) { try { std::wifstream data; data.imbue(std::locale("en_US.UTF-16")); data.open("Plop"); } catch(std::exception const&amp; e) { std::cout &lt;&lt; "Exception: " &lt;&lt; e.what() &lt;&lt; "\n"; throw; } } % g++ main.cpp % ./a.out Exception: locale::facet::_S_create_c_locale name not valid Abort </code></pre> http://stackoverflow.com/questions/1921232/just-in-time-derivation/1921922#1921922 1 Answer by Martin York for Just-In-Time Derivation Martin York 2009-12-17T13:49:28Z 2009-12-17T13:49:28Z <p>Are you looking for the <a href="http://en.wikipedia.org/wiki/Decorator%5Fpattern" rel="nofollow">Decorator pattern</a>?</p> <p>Basically the decorator is an object that encloses another object and extends the functionality of certain methods. The method calls are then forwarded to the enclosed method.</p> http://stackoverflow.com/questions/1919546/sun-studio-c-is-not-terminated-with-a-newline-warning-how-to-suppress/1919566#1919566 2 Answer by Martin York for Sun Studio C++ "is not terminated with a newline" warning - how to suppress? Martin York 2009-12-17T05:02:02Z 2009-12-17T05:02:02Z <p>Or you could add an empty line to the end of each file.</p> <p>A quick shell script</p> <pre><code>find . -name "*.cpp" -exec echo "" &gt;&gt; {} \; </code></pre> http://stackoverflow.com/questions/1916736/is-there-a-way-to-do-something-to-static-members-on-process-end/1917517#1917517 0 Answer by Martin York for Is there a way to do something to static members on process end? Martin York 2009-12-16T20:38:55Z 2009-12-16T20:38:55Z <p>I assume these static variables are pointers?</p> <p>Assuming you have:</p> <pre><code>class X { private: static Plop* staicXData; // Initialised in the code. }; </code></pre> <p>I would change it to:</p> <pre><code>Class X { private: static Plop&amp; getStatoc() { static Plop data; // Auto created on first use. // Destroyed on program exit. return data; } }; </code></pre> http://stackoverflow.com/questions/1917411/whats-the-result-if-i-use-delete-p-instead-of-delete-p-for-an-array/1917461#1917461 3 Answer by Martin York for What's the result if I use delete p instead of delete [] p for an array? Martin York 2009-12-16T20:29:17Z 2009-12-16T20:29:17Z <p>It is undefined behavior. </p> <p>What this means is that the standard gurantees to the writers of the memory management library that certain pre-conditions exist (In this case that arrays will be deleted with delete []).</p> <p>If you break these pre-conditions then the memory management library could fail in some way. How it fails will depend on how the library is implemented. But since C++ is designed for speed the result is probably not going to be nice. So usually this means that the internal memory management data structures are corrupted in some way. This will probably lead to some other part of your program sigfaulting.</p> <p>If you build in debug mode (on some compilers) they will use a special version of the memory management library that is designed to be more robust. Thus in these situations you <strong>may</strong> not crash but the extra checks have been explicitly added to the library and as a result is slower. But you still can not gurantee correct behavior.</p> http://stackoverflow.com/questions/1912165/best-worst-examples-of-undefined-behavior-in-c-or-c/1912471#1912471 0 Answer by Martin York for Best/worst examples of undefined behavior in C or C++? Martin York 2009-12-16T05:18:39Z 2009-12-16T05:18:39Z <p>How many times have I seen code like this:</p> <pre><code>void write(int fileID,int data) { write(fileID,&amp;data,4); // If they are on the ball 4 is sizeof(int) } int read(int fileID) { int result; read(fileID,&amp;result,4); } </code></pre> <p>But no consideration to endianess.</p> http://stackoverflow.com/questions/1912199/better-random-algorithm/1912261#1912261 4 Answer by Martin York for Better random algorithm? Martin York 2009-12-16T04:18:58Z 2009-12-16T04:39:23Z <p>The low order bits are not very random.<br> By using %2 you are only checking the bottom bit of the random number.</p> <p>Assuming you are not needing crypto strength randomness.<br> Then the following should be OK.</p> <pre><code>bool tile = rand() &gt; (RAND_MAX / 2); </code></pre> http://stackoverflow.com/questions/1907668/what-do-i-need-to-know-about-memory-in-c/1908152#1908152 11 Answer by Martin York for What do I need to know about memory in C++? Martin York 2009-12-15T15:21:01Z 2009-12-16T00:34:54Z <h2>Memory Management</h2> <h3>Basics</h3> <ul> <li>Every 'use of' new must be matched by 'use of' delete</li> <li>Array new is different form normal new and has its own delete</li> </ul> <p>_</p> <pre><code> int* data1 = new int(5); delete data1; int* data2 = new int[5]; delete [] data2; </code></pre> <h3>Must Know</h3> <ul> <li>Exceptions</li> <li>RAII</li> <li>Rule of 4.</li> </ul> <p><a href="http://stackoverflow.com/questions/130117/throwing-exceptions-out-of-a-destructor/130123#130123">http://stackoverflow.com/questions/130117/throwing-exceptions-out-of-a-destructor/130123#130123</a><br> <a href="http://stackoverflow.com/questions/255612/c-dynamically-allocating-an-array-of-objects/255744#255744">http://stackoverflow.com/questions/255612/c-dynamically-allocating-an-array-of-objects/255744#255744</a> <a href="http://stackoverflow.com/questions/1846144/1846409#1846409">http://stackoverflow.com/questions/1846144/1846409#1846409</a></p> <h3>Best Practice</h3> <ul> <li>Never actually use RAW pointers.</li> <li>Always wrap pointers in Smart Pointers.</li> <li>Learn the different types of smart pointers and when to use each</li> </ul> <p><a href="http://stackoverflow.com/questions/94227/smart-pointers-or-who-owns-you-baby">http://stackoverflow.com/questions/94227/smart-pointers-or-who-owns-you-baby</a></p> <h3>Advanced:</h3> <ul> <li>Understanding Exception Guarantees</li> <li>Understanding the use of throw clause</li> </ul> <p><a href="http://stackoverflow.com/questions/106586/what-are-the-principles-guiding-your-exception-handling-policy/106749#106749">http://stackoverflow.com/questions/106586/what-are-the-principles-guiding-your-exception-handling-policy/106749#106749</a></p> <h2>Common ways to leak</h2> <h3>Basics</h3> <pre><code>// Every new is matched by a delete. for(int loop = 0;loop &lt; 10;++loop) { data = new int(5); } delete data; // The problem is that every 'use of' new is not matched by a delete. // Here we allocate 10 integers but only release the last one. </code></pre> <h3>Must Know</h3> <pre><code>class MyArray { // Use RAII to manage the dynamic array in an exception safe manor. public: MyArray(int size) :data( new int[size]) {} ~MyArray() { delete [] data; } // PROBLEM: // Ignored the rule of 4. // The compiler will generate a copy constructor and assignment operator. // These default compiler generated methods just copy the pointer. This will // lead to double deletes on the memory. private: int* data; }; </code></pre> <h3>Best Practice</h3> <pre><code>// Understand what the properties of the smart pointers are: // std::vector&lt;std::auto_ptr&lt;int&gt; &gt; data; // Will not work. You can't put auto_ptr into a standard container. // This is because it uses move semantics not copy semantics. </code></pre> <h3>Advanced:</h3> <pre><code>// Gurantee that exceptions don't screw up your object: // class MyArray { // ... As Above: Plus void resize(int newSize) { delete [] data; data = new int[newSize]; // What happens if this new throws (because there is not enough memory)? // You have deleted the old data so the old data so it points at invalid memory. // The exception will leave the object in a completely invalid state } </code></pre> http://stackoverflow.com/questions/1911018/what-does-stdendl-represent-exactly-on-each-platform/1911279#1911279 0 Answer by Martin York for what does std::endl represent exactly on each platform? Martin York 2009-12-15T23:39:59Z 2009-12-15T23:39:59Z <p>The code:</p> <pre><code>stream &lt;&lt; std::endl; // Is equivalent to: stream &lt;&lt; "\n" &lt;&lt; std::flush; </code></pre> <p>So the question is what is "\n" mapped too.<br> On normal streams nothing happens. But for file streams (in text mode) then the "\n" gets mapped to the platfrom end of line sequence. Note: The read converts the platform end of line sequence back to a '\n' when it reads from a file in text mode.</p> <p>So if you are using a normal stream nothing happens. If you are using a file stream, just make sure it is opened in binary mode so that no conversion is applied:</p> <pre><code>stream &lt;&lt; "\r\n"; // &lt;CR&gt;&lt;LF&gt; </code></pre> http://stackoverflow.com/questions/240212/what-is-the-difference-between-new-delete-and-malloc-free/240308#240308 57 Answer by Martin York for What is the difference between new/delete and malloc/free? Martin York 2008-10-27T15:28:19Z 2009-12-15T22:53:40Z <h2>new/delete</h2> <ol> <li>Allocate/release memory</li> <li>Memory allocated from 'Free Store'</li> <li>Returns a fully typed pointer.</li> <li>new (standard version) never returns a NULL (will throw on failure)</li> <li>Are called with Type-ID (compiler calculates the size)</li> <li>Has a version explicitly to handle arrays.</li> <li>Reallocating (to get more space) not handled intuitively (because of copy constructor).</li> <li>If they call malloc/free is implementation defined.</li> <li>Can add a new memory allocator to deal with low memory (set_new_handler)</li> <li>operator new/delete can be overridden legally</li> <li><strong>constructor/destructor used to initialize/destroy the object</strong></li> </ol> <h2>malloc/free</h2> <ol> <li>Allocates/release memory</li> <li>Memory allocated from 'Heap'</li> <li>Returns a void*</li> <li>Returns NULL on failure</li> <li>Must specify the size required in bytes.</li> <li>Allocating array requires manual calculation of space.</li> <li>Reallocating larger chunk of memory simple (No copy constructor to worry about)</li> <li>They will <b>NOT</b> call new/delete</li> <li>No way to splice user code into the allocation sequence to help with low memory.</li> <li>malloc/free can <b>NOT</b> be overridden legally</li> </ol> <p>Technically memory allocated by new comes from the 'Free Store' while memory allocated by malloc comes from the 'Heap'. Weather these two areas are the same is an implementation details, which is another reason that malloc and new can not be inter-mixed.</p> http://stackoverflow.com/questions/1902832/resize-versus-pushback-in-stdvector-does-it-avoid-an-unnecessary-copy-assign/1903175#1903175 1 Answer by Martin York for resize versus push_back in std::vector : does it avoid an unnecessary copy assignment? Martin York 2009-12-14T20:08:31Z 2009-12-14T20:08:31Z <p>When you do push_back() the method checks the underlying storage area to see if space is needed. If space is needed then it will allocate a new contigious area for all elements and copy the data to the new are.</p> <p><strong>BUT</strong>: The size of the newly allocated space is not just one element bigger. It uses a nifty little algorithm for increasing space (I don't think the algorithm is defined as part of the standard but it usually doubles the allocated space). Thus if you push a large number of elemets only a small percentage of them actually cause the underlying space to be re-allocated.</p> <p>To actually increase the allocate space manually you have two options:</p> <ul> <li>reserve()<br> This actually increases the underlying storage space without adding elements to the vector. Thus making it less likely that future puah_back()'s will require the need to increase the space. </li> <li>resize()<br> This actually adds/removes elements to the vector to make it the correct size.</li> <li>capacity() Is the total number of elements that can be added before the underlying storeage needs to be re-allocated. Thus if ((capacity() - size()) > 0) a push_back will not cause the vector storage to be reallocated.</li> </ul> http://stackoverflow.com/questions/1902976/msvc-any-way-to-check-if-function-is-actually-inlined/1903018#1903018 3 Answer by Martin York for MSVC - Any way to check if function is actually inlined? Martin York 2009-12-14T19:43:55Z 2009-12-14T19:43:55Z <p>Each call site may potentially be different. </p> <p>The compiler may decide for certain parent methods it is worth inlining and for other parent methods that it is not worth inlining. Thus you can not actually determine the real answer without examing the assembley at each call site.</p> <p>As a result any tools you use would potentially give you a misleading answer. If you use a tool that checks for the existance of symbol (it may be there because some call sites need it, but potentially it may be inlined at others). Conversely the lack of the symbol does not mean the method/function is not inlined it may be static (as in file static) and thus the compiler does not need to keep the symbol around (yet it was not inlined).</p> http://stackoverflow.com/questions/1898212/convert-a-vectorunsigned-char-to-vectorunsigned-short/1898390#1898390 1 Answer by Martin York for Convert a vector<unsigned char> to vector<unsigned short> Martin York 2009-12-14T00:43:20Z 2009-12-14T06:26:40Z <p>If you just want to convert from one type to the other then use the standard constructor. As long as the iterators value type is auto convertible to the destination vectors value type the compiler will do the auto conversion between the two types. Just use the standard constructor</p> <pre><code>#include &lt;vector&gt; #include &lt;algorithm&gt; #include &lt;iterator&gt; int main() { std::vector&lt;unsigned char&gt; a; a.push_back((unsigned char)12); a.push_back((unsigned char)13); a.push_back((unsigned char)14); std::vector&lt;unsigned short&gt; b(a.begin(),a.end()); // Print out the vector std::copy(b.begin(),b.end(),std::ostream_iterator&lt;unsigned short&gt;(std::cout,"\t")); } &gt; g++ t.cpp &gt; ./a.out 12 13 14 </code></pre> <p>If you actually want to convert two bytes into one then some work is required. But it depends if the input data is actually the same endianess as the machine you are on. If you know that it is the same endianess that you just need to cast the input type.</p> <pre><code>#include &lt;vector&gt; #include &lt;algorithm&gt; #include &lt;iterator&gt; int main() { std::vector&lt;unsigned char&gt; a; // Make sure that the size is correct. // ie. An Odd number indicates that something is not quite correct. // std::vector&lt;unsigned short&gt; b(static_cast&lt;unsigned short*&gt;(&amp;a[0]), static_cast&lt;unsigned short*&gt;(&amp;a[a.size()])); // Print out the vector std::copy(b.begin(),b.end(),std::ostream_iterator&lt;unsigned short&gt;(std::cout,"\t")); } </code></pre> <p>Alternatively if you actually need to combine two values into a single value where the endianess is not the same as the target architecture, you can write a special iterator. Something like this:</p> <pre><code>#include &lt;Converter.h&gt; int main() { std::vector&lt;unsigned char&gt; a; // Make sure that the size is correct. // ie. An Odd number indicates that something is not quite correct. // std::vector&lt;unsigned short&gt; b(make_Converter(a.begin()),make_Converter(a.end())); // Print out the vector std::copy(b.begin(),b.end(),std::ostream_iterator&lt;unsigned short&gt;(std::cout,"\t")); } </code></pre> <p>Converter.h</p> <pre><code>#include &lt;vector&gt; #include &lt;iostream&gt; #include &lt;iterator&gt; template&lt;typename I&gt; struct Converter { I iterator; typedef typename std::input_iterator_tag iterator_category; typedef typename std::iterator_traits&lt;I&gt;::value_type value_type; typedef typename std::iterator_traits&lt;I&gt;::difference_type difference_type; typedef typename std::iterator_traits&lt;I&gt;::pointer pointer; typedef typename std::iterator_traits&lt;I&gt;::reference reference; Converter(I iter) :iterator(iter) {} Converter&amp; operator++() { iterator++; return *this; } Converter operator++(int) { Converter tmp(*this); this-&gt;operator++(); return (tmp); } value_type operator*() { /* * The actual calculation done here will depend on the underlying hardware. */ typename std::iterator_traits&lt;I&gt;::value_type val(*iterator); val &lt;&lt; 8; iterator++; val |= (*iterator); return val; } bool operator!=(Converter const&amp; rhs) { return iterator != rhs.iterator; } }; template&lt;typename I&gt; Converter&lt;I&gt; make_Converter(I iter) { return Converter&lt;I&gt;(iter); } </code></pre> http://stackoverflow.com/questions/1897184/static-variable-initialisation-code-never-gets-called/1897394#1897394 3 Answer by Martin York for static variable initialisation code never gets called Martin York 2009-12-13T19:10:28Z 2009-12-13T19:17:30Z <p>If you have an object in a static library that is not <strong>EXPLICITLY</strong> used in the application. Then the linker will not pull that object from the lib into the application.</p> <p>There is a big difference between static and dynamic libraries.</p> <p>Dynamic Library:<br> At compile time nothing is pulled from the dynamic library. Extra code is added to explicitly load and resolve the symbols at run-time. At run time the whole library is loaded and thus object initializers are called (though when is implementation detail).</p> <p>Static libraries are handled very differently:<br> When you link against a static library it pulls all the items that are not defined in application that are defined in the library into the application. This is repeated until there are no more dependencies that the library can resolve. The side effect of this is that objects/functions not explicitly used are not pulled form the library (thus global variables that are not directly accessed will not be pulled).</p> http://stackoverflow.com/questions/207496/c-binary-search-tree-insert-via-recursion/207503#207503 5 Answer by Martin York for C++ Binary Search Tree Insert via Recursion Martin York 2008-10-16T05:10:58Z 2009-12-11T09:01:45Z <p>You need to change the wording of your debug statements</p> <p>Really it should read (not Root node)</p> <pre><code> cout &lt;&lt; "Leaf Node Found" &lt;&lt; newNode-&gt;data &lt;&lt; endl; </code></pre> <p>It is only the root when it is first called after that any call with node->left or node->right makes it an intermediate node.</p> <p>To write height() I would do this:</p> <pre><code>template &lt;class T&gt; int BT&lt;T&gt;::height(Node&lt;T&gt;* root) const { if (root == NULL) {return 0;} return 1 + max(height(root-&gt;left),height(root-&gt;right)); } </code></pre> http://stackoverflow.com/questions/1883740/c-declarative-parsing-serialization 7 C++ Declarative Parsing Serialization Martin York 2009-12-10T20:21:46Z 2009-12-11T02:59:31Z <p>Looking at Java and C# they manage to do some wicked processing based on special languaged based anotation (forgive me if that is the incorrect name).</p> <p>In C++ we have two problems with this:</p> <p>1) There is no way to annotate a class with type information that is accessable at runtime.<br> 2) Parsing the source to generate stuff is way to complex.</p> <p>But I was thinking that this could be done with some template meta-programming to achieve the same basic affect as anotations (still just thinking about it). Like char_traits that are specialised for the different types an xml_traits template could be used in a declaritive way. This traits class could be used to define how a class is serialised/deserialized by specializing the traits for the class you are trying to serialize.</p> <h3>Example Thoughs:</h3> <pre><code>template&lt;typename T&gt; struct XML_traits { typedef XML_Empty Children; }; template&lt;&gt; struct XML_traits&lt;Car&gt; { typedef boost::mpl::vector&lt;Body,Wheels,Engine&gt; Children; }; template&lt;typename T&gt; std::ostream&amp; Serialize(T const&amp;) { // my template foo is not that strong. // but somthing like this. boost::mpl::for_each&lt;typename XML_Traits&lt;T&gt;::Children,Serialize&gt;(data); } template&lt;&gt; std::ostream&amp; Serialize&lt;XML_Empty&gt;(T const&amp;) { /* Do Nothing */ } </code></pre> <h3>My question is:</h3> <p>Has anybody seen any projects/decumentation (not just XML) out there that uses techniques like this (template meta-programming) to emulate the concept of annotation used in languges like Java and C# that can then be used in code generation (to effectively automate the task by using a declaritive style).</p> <p>At this point in my research I am looking for more reading material and examples.</p> http://stackoverflow.com/questions/1884339/how-is-c-inspired-by-c-more-than-by-java/1884575#1884575 1 Answer by Martin York for How is C# inspired by C++ more than by Java? Martin York 2009-12-10T22:37:00Z 2009-12-10T22:37:00Z <p>All three are just close relatives.<br> Whose mother was smalltalk.</p> <p>Who the father of each language is another question?</p> <pre><code>Ada + Smalltalk =&gt; Java C + Smalltalk =&gt; C++ ? + Smalltalk =&gt; C# </code></pre> http://stackoverflow.com/questions/1883056/stdstringstream-to-read-int-and-strings-from-a-string/1883159#1883159 0 Answer by Martin York for std::stringstream to read int and strings, from a string. Martin York 2009-12-10T18:49:37Z 2009-12-10T19:35:14Z <p>Don't do the dynamic allocation of the buffer explicitly use a vector.<br> This makes memory management implicit.</p> <pre><code>// Create buffer and copy stream to it std::vector&lt;char&gt; buffer(lenght); p_prog.read (&amp;buffer[0],lenght); p_prog.close(); </code></pre> <p>Personally I don't explicitly use close() (unless I want to catch an exception). Just open a file in a scope that will cause the destructor to close the file when it goes out of scope.</p> http://stackoverflow.com/questions/1944682/what-is-mean-by-delegates-in-c/1944711#1944711 Comment by Martin York on What is mean by delegates in C++? Martin York 2009-12-22T07:48:24Z 2009-12-22T07:48:24Z Callback functions is a C concept. Though it can be used in C++ it has been superseded by the concept of functors (objects that behave like functions). http://stackoverflow.com/questions/205945/why-does-the-c-stl-not-provide-any-tree-containers/205985#205985 Comment by Martin York on Why does the C++ STL not provide any "tree" containers? Martin York 2009-12-22T04:24:28Z 2009-12-22T04:24:28Z @Joe: Thank you captain obvious. Why not contribute something useful like another usage. http://stackoverflow.com/questions/1939899/how-do-i-make-an-unreferenced-object-load-in-c/1941092#1941092 Comment by Martin York on How do I make an unreferenced object load in C++? Martin York 2009-12-21T19:29:46Z 2009-12-21T19:29:46Z Yes. Read this: <a href="http://stackoverflow.com/questions/1897184/static-variable-initialisation-code-never-gets-called/1897394" rel="nofollow" title="static variable initialisation code never gets called">stackoverflow.com/questions/1897184/&hellip;</a> http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941364#1941364 Comment by Martin York on Always check malloc'ed memory? Martin York 2009-12-21T18:50:24Z 2009-12-21T18:50:24Z @jldupont. 1) If we are in an embeded platform the X and Y may interact. But you definately need to check there. If we are on Windows the usage of memory by X will not affect the memory available to Y. http://stackoverflow.com/questions/1941517/explicitly-disallow-heap-allocation-in-c/1941531#1941531 Comment by Martin York on Explicitly disallow heap allocation in C++... Martin York 2009-12-21T17:42:21Z 2009-12-21T17:42:21Z I think a compile time error is better than allowing the code to actually compile then die at runtime. http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941365#1941365 Comment by Martin York on Always check malloc'ed memory? Martin York 2009-12-21T17:38:12Z 2009-12-21T17:38:12Z @jldupont: If you manage to unwind the stack and release resources. There should be no problem reporting the error. One would assume that the event loggers have been written to cope with this (there are techniques to handle it). http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941365#1941365 Comment by Martin York on Always check malloc'ed memory? Martin York 2009-12-21T17:36:29Z 2009-12-21T17:36:29Z @Neil: A core is only going to tell you that for forgot to check for a NULL pointer :-) We already know that it ran out of memory because the hard disk just spent the last 10 minutes grinding through all the virtual pages that got paged out. In a windows context recovering from low memory may not be perfect but it can be done with only a little work (assuming good programming techniques that allow the you to unwind the stack without further processing all the way back to the event loop (or where this thread took up the task)). http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941364#1941364 Comment by Martin York on Always check malloc'ed memory? Martin York 2009-12-21T17:28:59Z 2009-12-21T17:28:59Z C++ manages to do it. If something is eating memory fast, then stop doing something. Release all resources to-do with something get back to a normal state then report the error. With work C can be made to handle errors just like C++. At worst call exit() and shut down cleanly. Generating segfaults because you can be bothered to code correctly is not going to make your customers confident in your ability. http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941365#1941365 Comment by Martin York on Always check malloc'ed memory? Martin York 2009-12-21T17:22:41Z 2009-12-21T17:22:41Z @jldpoint: That is imposable to say in the general case. But a cleanly shut down program is always better than one that dies from segfault. Trying to sell a program that generates segfaults into the system log files is not going to make customers confident in your ability! http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941365#1941365 Comment by Martin York on Always check malloc'ed memory? Martin York 2009-12-21T17:20:46Z 2009-12-21T17:20:46Z @Neil: Close to impossible is just an excuse to be lazy and not look at the problem. If there is nothing to be done call exit() and a least try for a clean(ish) shutdown. In a windows context canceling the current operation and releasing the resources should put the application back into a standard state in the main event loop. http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941365#1941365 Comment by Martin York on Always check malloc'ed memory? Martin York 2009-12-21T17:17:28Z 2009-12-21T17:17:28Z @jldupont: check for NULL and call exit() then. Your onexit() handlers may be able to do something. http://stackoverflow.com/questions/1941323/always-check-malloced-memory/1941365#1941365 Comment by Martin York on Always check malloc'ed memory? Martin York 2009-12-21T17:14:34Z 2009-12-21T17:14:34Z But in the C case you should always check. Unresponsive and recoverable is better than a crash. http://stackoverflow.com/questions/1939853/storing-a-type-as-a-variable-for-a-templated-class/1939866#1939866 Comment by Martin York on Storing a Type as a Variable? for a templated class? Martin York 2009-12-21T16:59:39Z 2009-12-21T16:59:39Z A map is not going to help as there is no common base class. http://stackoverflow.com/questions/1939899/how-do-i-make-an-unreferenced-object-load-in-c Comment by Martin York on How do I make an unreferenced object load in C++? Martin York 2009-12-21T16:34:09Z 2009-12-21T16:34:09Z What do you mean by &quot;static initialization&quot;? That is not a C++ concept. Are you using global variable initialization? If these are in a namespace this may be a problem. http://stackoverflow.com/questions/1939899/how-do-i-make-an-unreferenced-object-load-in-c Comment by Martin York on How do I make an unreferenced object load in C++? Martin York 2009-12-21T16:33:20Z 2009-12-21T16:33:20Z Do you use statinit.cpp to build a static library? Then link against the static library? That may be a problem.