User Brian R. Bondy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:12:38Z http://stackoverflow.com/feeds/user/3153 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/623763/what-are-some-recommended-high-quality-non-basic-python-books 9 What are some recommended, high quality, non-basic python books? Brian R. Bondy 2009-03-08T15:57:55Z 2009-12-05T01:34:07Z <p>I'm looking for something of the quality of our friend <a href="http://rads.stackoverflow.com/amzn/click/1933988363" rel="nofollow">John Skeet's C# in depth book</a>, but about Python.</p> <p>Please leave any recommendations you have for Python books that do not cover basic programming constructs.</p> http://stackoverflow.com/questions/1842678/c-newbie-initializer-list-question/1842735#1842735 0 Answer by Brian R. Bondy for C++: newbie initializer list question Brian R. Bondy 2009-12-03T20:34:45Z 2009-12-03T20:34:45Z <pre><code>class A : public B { }; class B { public: int x; }; </code></pre> <p>A is a derived type from B. Or A inherits B.</p> <p>So this is valid...</p> <pre><code>A a; a.x = 3; </code></pre> <p>The rest of your code is just calling B's constructor when A is constructed. </p> http://stackoverflow.com/questions/1842231/how-to-get-virtkey-value-for-wmkeydown-in-wschild/1842337#1842337 0 Answer by Brian R. Bondy for How to get virtkey value for WM_KEYDOWN in WS_CHILD? Brian R. Bondy 2009-12-03T19:34:17Z 2009-12-03T19:34:17Z <p>You could use the <a href="http://msdn.microsoft.com/en-us/library/ms646301%28VS.85%29.aspx" rel="nofollow">GetKeyState</a> Win32 API from within a <a href="http://msdn.microsoft.com/en-us/library/ms646283%28VS.85%29.aspx" rel="nofollow">WM_SETFOCUS</a> handler.</p> http://stackoverflow.com/questions/112738/how-does-boost-bind-work-behind-the-scenes-in-general 8 How does boost bind work behind the scenes in general? Brian R. Bondy 2008-09-22T01:09:15Z 2009-12-03T13:10:25Z <p>Without spending a long time reviewing the boost source code, could someone give me a quick rundown of how boost bind is implemented? </p> http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc/1835201#1835201 15 Answer by Brian R. Bondy for Is it a better practice to typecast the pointer returned by malloc? Brian R. Bondy 2009-12-02T19:21:01Z 2009-12-02T19:44:37Z <p>The cast is not needed for the C language, but for C++ compatibility you may want to cast. This is one of the spots where C is not a subset of C++.</p> <p>The following will compile in C but not C++:</p> <pre><code>int *a=malloc(sizeof(int)); </code></pre> <p>The following will compile in both C and C++:</p> <pre><code>int *b=(int *)malloc(sizeof(int)); </code></pre> http://stackoverflow.com/questions/1834446/python-check-windows-server-version/1834519#1834519 1 Answer by Brian R. Bondy for Python check windows server version Brian R. Bondy 2009-12-02T17:30:22Z 2009-12-02T17:38:55Z <p>You could use the <a href="http://msdn.microsoft.com/en-us/library/ms724451%28VS.85%29.aspx" rel="nofollow">GetVersionEx</a> Win32 API and check the value of <code>wProductType</code> to differentiate.</p> <p>Check out the <a href="http://sourceforge.net/projects/pywin32/" rel="nofollow">Python for Windows extension</a> package.</p> <blockquote> <p>VER_NT_DOMAIN_CONTROLLER 0x0000002</p> <p>The system is a domain controller and the operating system is Windows Server 2008, Windows Server 2003, or Windows 2000 Server.</p> <p>VER_NT_SERVER 0x0000003</p> <p>The operating system is Windows Server 2008, Windows Server 2003, or Windows 2000 Server.</p> <p>Note that a server that is also a domain controller is reported as VER_NT_DOMAIN_CONTROLLER, not VER_NT_SERVER.</p> <p>VER_NT_WORKSTATION 0x0000001</p> <p>The operating system is Windows Vista, Windows XP Professional, Windows XP Home Edition, or Windows 2000 Professional.</p> </blockquote> http://stackoverflow.com/questions/1833224/operator-overloading/1833243#1833243 0 Answer by Brian R. Bondy for operator/ overloading Brian R. Bondy 2009-12-02T14:28:52Z 2009-12-02T14:28:52Z <p>You need to specify the class for each of the functions.</p> <p>So change: </p> <pre><code>big_int operator+(big_int b) </code></pre> <p>to:</p> <pre><code>big_int big_int::operator+(big_int b) </code></pre> <p>Otherwise you need to specify 2 parameters for operators that work on 2 values like +, *, /, ...</p> <p>But since you put the declaration of all the operators inside your class I think you want my first suggestion.</p> http://stackoverflow.com/questions/1829119/c-pointers-to-arrays-arrays-of-pointers/1829154#1829154 1 Answer by Brian R. Bondy for C++ -- Pointers to Arrays -- Arrays of Pointers Brian R. Bondy 2009-12-01T21:47:11Z 2009-12-01T21:47:11Z <pre><code>line = new D3DXVECTOR3[numPoints]; </code></pre> <p><code>line</code> holds the memory address of the first element of the array of D3DXVECTOR3.</p> <p>I.e. <code>line</code> is a pointer to the first element of the array.</p> <p><a href="http://brianbondy.com/blog/id/91/" rel="nofollow">This article</a> should clarify it.</p> http://stackoverflow.com/questions/61524/testing-network-interrupts-in-software 9 Testing network interrupts in software Brian R. Bondy 2008-09-14T18:09:36Z 2009-12-01T21:25:03Z <p>I have a network C++ program in Windows that I'd like to test for network disconnects at various times. What are my options?</p> <p>Currently I am:</p> <ol> <li>Actually disconnecting the network wire from the back of my computer</li> <li>using ipconfig /release</li> <li>Using the <a href="http://www.nirsoft.net/utils/cports.html" rel="nofollow">cports</a> program to close out the socket completely</li> </ol> <p>None of these methods though are ideal for me, and I'd like to emulate network problems more easily. </p> <p>I would like for sometimes connects to fail, sometimes socket reads to fail, and sometimes socket writes to fail. It would be great if there was some utility I could use to emulate these types of problems.</p> <p>It would also be nice to be able to build some automated unit tests while this emulated bad network is up.</p> http://stackoverflow.com/questions/151711/carbon-vs-cocoa-is-carbon-a-dead-end-with-os-x 11 Carbon vs Cocoa, is Carbon a dead end with OS X? Brian R. Bondy 2008-09-30T04:04:29Z 2009-12-01T21:24:22Z <p>What are the trade-offs for using Carbon vs. Cocoa considering a developer with about 15 years of programming experience already in C/C++.</p> <p>Is Carbon a dead end with OS X?</p> http://stackoverflow.com/questions/49224/good-crash-reporting-library-in-c 12 Good crash reporting library in c# Brian R. Bondy 2008-09-08T06:10:43Z 2009-12-01T21:22:59Z <p>Does anyone know of a good crash reporting library for C#?</p> <p>In C++ there is CrashRpt available, so I'd like something along those lines. </p> <p>Ideally I'd like the library to zip up general information about the computer, and a crash mini dump file. </p> <p>I would also need a library that is free for commercial use and that has source code available.</p> http://stackoverflow.com/questions/172587/what-is-the-difference-between-g-and-gcc 15 What is the difference between g++ and gcc? Brian R. Bondy 2008-10-05T20:25:13Z 2009-12-01T21:22:41Z <p>What is the difference between g++ and gcc? Which ones should be used for general c++ development?</p> http://stackoverflow.com/questions/1823431/which-is-a-better-language-c-or-python-for-complex-problem-solving-exercises/1823475#1823475 19 Answer by Brian R. Bondy for which is a better language (C++ or Python) for complex problem solving exercises (ex. Graphs) ? Brian R. Bondy 2009-12-01T01:22:37Z 2009-12-01T01:45:53Z <p>I think you're looking for Python, because you can:</p> <ul> <li>Focus on the algorithms themselves and not have to worry about other detail like memory management. </li> <li>Do more with less code</li> <li>The syntax is almost like working with pseudo code.</li> <li>There is great built in language support for lists, tuples, list comprehensions, etc...</li> </ul> <p>But more specifically...</p> <ul> <li>If by <code>better</code> you mean <strong>speed of development</strong>, then chose <strong>Python</strong>.</li> <li>If by <code>better</code> you mean <strong>sheer execution speed</strong>, then chose <strong>C++</strong>.</li> </ul> http://stackoverflow.com/questions/1823406/what-does-utma-mean/1823415#1823415 3 Answer by Brian R. Bondy for What does __utma mean? Brian R. Bondy 2009-12-01T01:03:41Z 2009-12-01T01:14:54Z <p>They are URL parameters, they pass information back to the web server.</p> <p><code>protocol://username:password@server:port?parameterList#anchorName</code></p> <p>Example:</p> <p><code>http://stackoverflow.com:80/page?param1=value1&amp;param2=value2</code></p> <ul> <li>The <code>#anchorName</code> will skip you to a certain part of an HTML page</li> <li>The <code>parameterList</code> portion is also called the query</li> <li>The <code>protocol</code> portion is also called the scheme</li> <li>The <code>username:password</code> part can be ommitted</li> <li>The <code>port</code> will default to 80 if the <code>protocol</code> is HTTP and the <code>port</code> is not specified</li> <li>If you don't specify the <code>protocol</code> in a web browser, it will default to HTTP.</li> <li>You will often want to have a single page do multiple things. This is accomplished by accepting different parameters. These parameters will typically pass information to the server which will modify how the next page is displayed, or how another action is performed on the server</li> <li>Sometimes URL parameters are replaced with nice looking URL paths. This is accomplished with newer web frameworks like ASP .NET MVC, Django, Ruby on Rails, etc... </li> </ul> <p>There is a much more detailed description from what I gave in <a href="http://www.faqs.org/rfcs/rfc3986.html" rel="nofollow">RFC 3986: Uniform Resource Identifier (URI): Generic Syntax</a>.</p> http://stackoverflow.com/questions/196677/can-you-mix-net-languages-within-a-single-project 7 Can you mix .net languages within a single project? Brian R. Bondy 2008-10-13T04:01:23Z 2009-11-30T22:55:37Z <p>Can you mix .net languages within a single project? So pre-compiled, I would like to call classes and methods of other source files.</p> <p>For both web and apps? </p> <p>In particular I'd be interested in F# and C#.</p> http://stackoverflow.com/questions/1822223/how-to-find-whats-new-in-vc-v10/1822253#1822253 4 Answer by Brian R. Bondy for How to find what's new in VC++ v10? Brian R. Bondy 2009-11-30T20:36:47Z 2009-11-30T20:36:47Z <p><a href="http://en.wikipedia.org/wiki/Visual%5FC%2B%2B" rel="nofollow">Wikipedia's Visual C++ page</a> has a recap, which I imagine will be updated frequently as we get closer to the release:</p> <blockquote> <p>Visual C++ 2010 (known also as Visual C++ 10.0) will be released on 22nd March 2010. It is currently in development, and available only in the form of beta version. The Visual C++ team is considering using a SQL Server Compact database to store information about the source code, including IntelliSense information, for better IntelliSense and code-completion support.[17] This version adds a modern C++ parallel computing library called the Parallel Patterns Library, partial support for C++0x, significantly improved IntelliSense, and performance improvements to both the compiler and generated code.[18] This version is built around .NET 4.0, but supports compiling to machine code. The partial C++0x support in VC10 consists of 6 compiler features (lambdas, rvalue references, auto, decltype, static_assert, nullptr), and some library features (e.g. moving the TR1 components from std::tr1 namespace directly to std namespace). Variadic templates were also considered, but delayed until some future version due to lower priority which stemmed from the fact that unlike other costly-to-implement features in VC10 (lambda, rvalue references), this one would benefit rather the minority of library writers than the majority of compiler end users.[19] Beta 2 version number: 16.00.21003.01 (this is the version of compiler; the IDE itself has version number 16.00.21006.01)[20] [edit]Current editions</p> </blockquote> http://stackoverflow.com/questions/1821561/c-implications-of-making-a-method-virtual/1821582#1821582 4 Answer by Brian R. Bondy for C++ : implications of making a method virtual Brian R. Bondy 2009-11-30T18:37:01Z 2009-11-30T18:48:54Z <p>If you make the function virtual inside of the base class, anything that derives from it will also have it virtual.</p> <p>Once virtual, if you create an instance of <code>A</code>, then it will still call <code>A::f</code>.</p> <p>If you create an instance of B and store it in a pointer of type <code>A*</code>. And then you call <code>A*::-&gt;f</code>, then it will call <code>B</code>'s <code>B::f</code>.</p> <p>As for side effects, there probably won't be any side effects, other than a slight (unnoticeable) performance loss. </p> <p>There is a very small side effect as well, there could be a class C that also derives from A, and it may implement <code>C::f</code>, and expect that if <code>A*::-&gt;f</code> was called, then it expects <code>A::f</code> to be called. But this is not very common. </p> <p>But more than likely, if <code>C</code> exists, then it does not implement <code>C::f</code> at all, and in which case everything is fine. </p> <p><hr></p> <p>Be careful though, if you are using an already compiled library and you are modifying it's header files, what you are expecting to work probably will not. You will need to recompile the header and source files. </p> <p>You could consider doing the following to avoid side effects:</p> <ol> <li>Create a type <code>A2</code> that derives from <code>A</code> and make it's <code>f</code> virtual </li> <li>Use pointers of type <code>A2</code> instead of <code>A</code></li> <li>Derive <code>B</code> from type <code>A2</code>. </li> <li>In this way anything that used A will work in the same way guaranteed</li> </ol> <p>Depending on what you need you may also be able to use a <code>has-a</code> relationship instead of a <code>is-a</code>.</p> http://stackoverflow.com/questions/1821301/c-anyone-know-of-some-projects-thatll-help-me-learn/1821316#1821316 1 Answer by Brian R. Bondy for [C++] Anyone know of some projects that'll help me learn? Brian R. Bondy 2009-11-30T17:53:51Z 2009-11-30T17:53:51Z <p>Take a look at <a href="http://codekata.pragprog.com/" rel="nofollow">codekata</a>, I haven't tried it myself but I've heard great things, and it looks like a great way to improve your programming skills.</p> http://stackoverflow.com/questions/364240/how-do-you-reduce-compile-time-and-linking-time-for-visual-c-projects-native 7 How do YOU reduce compile time, and linking time for Visual C++ projects? (native c++) Brian R. Bondy 2008-12-12T21:46:19Z 2009-11-29T12:24:44Z <p>How do YOU reduce compile time, and linking time for VC++ projects? (native C++)</p> <p>Please specify if each suggestion applies to debug, release, or both. </p> http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point/1811020#1811020 3 Answer by Brian R. Bondy for Standard library - higher-precision floating point? Brian R. Bondy 2009-11-27T23:42:34Z 2009-11-27T23:42:34Z <p>I think you are looking for the <a href="http://packages.python.org/bigfloat/" rel="nofollow">bigfloat</a> package for arbitrary precision floating-point reliable arithmetic.</p> http://stackoverflow.com/questions/1798741/subversion-command-line-commit-does-nothing/1798757#1798757 1 Answer by Brian R. Bondy for Subversion command line commit does nothing Brian R. Bondy 2009-11-25T17:52:55Z 2009-11-25T17:52:55Z <p>Did you svn add myFile.txt first?</p> <p>You can only commit changes to files that are added to svn.</p> http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793825#1793825 12 Answer by Brian R. Bondy for Declaring a variable in an if-else block in C++ Brian R. Bondy 2009-11-24T23:59:46Z 2009-11-24T23:59:46Z <p>Your problem is that player falls out of scope in each if / else if block.</p> <p>You need to declare your variable above all of the if statements. </p> <p>But you can't use a reference for that because you must initialize a reference right away.</p> <p>Instead you probably want something like this:</p> <pre><code>int main(int argc, char *argv[]) { Player * pPlayer = NULL; if (argv[3] == string("simple")) { pPlayer = get_Simple(); } else if (argv[3] == string("counting")) { pPlayer = get_Counting(); } else if (argv[3] == string("competitor")) { pPlayer = get_Competitor(); } //Then if you really want to... Player &amp;player = *pPlayer; } </code></pre> http://stackoverflow.com/questions/1792578/benefits-of-exporting-a-class-from-a-dll-vs-static-library/1792591#1792591 8 Answer by Brian R. Bondy for Benefits of exporting a class from a dll vs. static library Brian R. Bondy 2009-11-24T20:05:34Z 2009-11-24T20:34:32Z <p>Advantages of a DLL:</p> <ul> <li>You can have multiple different exe's that access this functionality, so you will have a smaller project size overall.</li> <li>You can dynamically update your component without replacing the whole exe. If you do this though be careful that the interface remains the same.</li> <li>Sometimes like in the case of LGPL you are forced into using a DLL.</li> <li>You could have some components as C#, Python or other languages that tie into your DLL.</li> <li>You can build programs that consume your DLL that work with different versions of the DLL. For example you could check if a function exists in a certain operating system DLL and only call it if it exists, and otherwise do some other processing.</li> </ul> <p>Advantages of Static library:</p> <ul> <li>You cannot have dll verisoning problems that way</li> <li>Less to distribute, you aren't forced into a full installer if you only have a small application.</li> <li>You don't have to worry about anyone else tying into your code that would have been accessible if it was a DLL.</li> <li>Easier to develop a static library as you don't need to worry about exports and imports.</li> <li>Memory management is easier.</li> </ul> http://stackoverflow.com/questions/1790932/get-directory-from-user/1790952#1790952 3 Answer by Brian R. Bondy for Get Directory from User Brian R. Bondy 2009-11-24T15:51:21Z 2009-11-24T16:07:44Z <p>You are looking for the Win32 Shell API: <a href="http://msdn.microsoft.com/en-us/library/bb762115%28VS.85%29.aspx" rel="nofollow">SHBrowseForFolder</a></p> http://stackoverflow.com/questions/1790704/difference-between-square-brackets-and-asterisk/1790720#1790720 12 Answer by Brian R. Bondy for Difference between [square brackets] and *asterisk Brian R. Bondy 2009-11-24T15:15:29Z 2009-11-24T15:36:50Z <p>When you use the type <code>char x[]</code> instead of <code>char *x</code> <strong>without initialization</strong>, you can consider them the same. You cannot declare a new type as <code>char x[]</code> without initialization, but you can accept them as parameters to functions. In which case they are the same as pointers. </p> <p>When you use the type <code>char x[]</code> instead of <code>char *x</code> <strong>with initialization</strong>, they are completely 100% different.</p> <p><hr></p> <p><strong>Example of how <code>char x[]</code> is different from <code>char *x</code>:</strong></p> <pre><code>char sz[] = "hello"; char *p = "hello"; </code></pre> <p><code>sz</code> is actually an array, not a pointer. </p> <pre><code>assert(sizeof(sz) == 6); assert(sizeof(sz) != sizeof(char*)); assert(sizeof(p) == sizeof(char*)); </code></pre> <p><hr></p> <p><strong>Example of how <code>char x[]</code> is the same as <code>char *x</code>:</strong></p> <pre><code>void test1(char *p) { assert(sizeof(p) == sizeof(char*)); } void test2(char p[]) { assert(sizeof(p) == sizeof(char*)); } </code></pre> <p><hr></p> <p><strong>Coding style for passing to functions:</strong></p> <p>It really doesn't matter which one you do. Some people prefer <code>char x[]</code> because it is clear that you want an array passed in, and not the address of a single element.</p> <p>Usually this is already clear though because you would have another parameter for the length of the array. </p> <p><hr></p> <p><strong>Further reading:</strong></p> <p>Please see this post entitled <a href="http://brianbondy.com/blog/id/91/" rel="nofollow">Arrays are not the same as pointers!</a></p> http://stackoverflow.com/questions/1790291/using-boost-on-windows-visual-studio/1790337#1790337 8 Answer by Brian R. Bondy for Using Boost on Windows (Visual Studio) Brian R. Bondy 2009-11-24T14:13:00Z 2009-11-24T14:21:44Z <p>A good way to make sure everyone has everything configured properly is to use svn externals. You can create something like <code>/trunk/boost1.35</code> and then you can point to that with an svn external.</p> <p>That way as new versions of boost come out, you can just repoint your svn external to <code>/trunk/boost1.40</code></p> <p>In your repository, your svn external points to that svn folder within your repository. Example <code>/depends/boost</code></p> <p>We personally keep the boost header files under source control as described but keep the libs as a zip that we require everyone to download. We have an environment variable something like the following BOOST_LIB and we point that to the current boost library directory.</p> http://stackoverflow.com/questions/294256/favorite-non-obvious-feature-of-svn 17 Favorite non obvious feature of svn? Brian R. Bondy 2008-11-16T19:24:22Z 2009-11-24T09:16:58Z <p>What is your favorite non obvious feature of svn?</p> http://stackoverflow.com/questions/1785100/why-use-a-pointer-to-a-pointer-to-the-stack-when-creating-a-push-function/1785132#1785132 3 Answer by Brian R. Bondy for Why use a pointer to a pointer to the stack when creating a push function? Brian R. Bondy 2009-11-23T18:45:00Z 2009-11-23T18:51:59Z <p>A pointer is simply a variable that holds a <strong>value</strong>, that value is a memory address.</p> <p>A pointer to a pointer is also simply a variable that holds a value. That value is the memory address of a pointer.</p> <p>You use a pointer to a pointer when you want to change the <strong>value</strong> of a pointer. </p> <pre><code>//Not a very useful example, but shows what I mean... void getOffsetBy3Pointer(const char *pInput, char **pOutput) { *pOutput = pInput + 3; } </code></pre> <p>And you call this function like so:</p> <pre><code>const char *p = "hi you"; char *pYou; getOffsetBy3Pointer(p, &amp;pYou); assert(!stricmp(pYou, "you")); </code></pre> <p><hr></p> <p>Now consider what would happen if we tried to implement this function with a single pointer.</p> <pre><code>//Note: This is completely wrong void BadGetOffsetBy3Pointer(const char *pInput, char *pOutput) { //*pOutput refers to the first actual char element that pOutput points to. pOutput = pInput + 3; //pOutput now points to pInput + 3, but the variable we passed in remains distinct. } </code></pre> <p>And you call this function like so:</p> <pre><code>const char *p = "hi you"; char *pYou = NULL; BadGetOffsetBy3Pointer(p, pYou); assert(pYou == NULL); </code></pre> <p>Note in the BadGetOffsetBy3Pointer, we could have changed some of the characters, but we couldn't change what pYou points to.</p> http://stackoverflow.com/questions/1785028/class-not-registered/1785081#1785081 2 Answer by Brian R. Bondy for Class not registered Brian R. Bondy 2009-11-23T18:34:43Z 2009-11-23T18:34:43Z <p>Did you try registering the COM server with regsvr32.exe?</p> http://stackoverflow.com/questions/1784853/how-is-the-x64-architecture-different-from-x86/1784873#1784873 1 Answer by Brian R. Bondy for How is the x64 architecture different from x86 Brian R. Bondy 2009-11-23T17:59:41Z 2009-11-23T17:59:41Z <p>For starters the size of a pointer is 8 bytes instead of 4.</p> <p>Registers can hold 64-bit values as well.</p> <p>Also there are often many differences at the OS level. For example on Windows you have things like filesystem redirection and registry redirection (WOW64) when running 32-bit apps on a 64-bit Windows OS.</p> http://stackoverflow.com/questions/1847196/efficient-switch-statement Comment by Brian R. Bondy on Efficient switch statement Brian R. Bondy 2009-12-04T14:47:00Z 2009-12-04T14:47:00Z Don't worry about things this specific. Both are very similar, simply write the code and then profile to find what needs optimizations. I'm sure you'll find this doesn't come up as something that needs optimizing. http://stackoverflow.com/questions/99474/how-to-handle-code-that-is-deemed-dangerous-to-change-but-stable/99530#99530 Comment by Brian R. Bondy on how to handle code that is deemed dangerous to change, but stable? Brian R. Bondy 2009-12-03T16:32:21Z 2009-12-03T16:32:21Z additions to the code base may still need to be added, without being refactored it could be more risky to do those additions. http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc/1835227#1835227 Comment by Brian R. Bondy on Is it a better practice to typecast the pointer returned by malloc? Brian R. Bondy 2009-12-02T20:39:36Z 2009-12-02T20:39:36Z I agree with you all, my point was just that the existence of a problem is possible, not that it is the preferred way. http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc/1835227#1835227 Comment by Brian R. Bondy on Is it a better practice to typecast the pointer returned by malloc? Brian R. Bondy 2009-12-02T20:14:31Z 2009-12-02T20:14:31Z Not sure about that, I think you can store C++ code into a file that has .c extension and compile it with g++. Also if you include a .h file into a .cpp file you are considering the code as C++ code. In both of those examples you will have compiling errors. http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc/1835227#1835227 Comment by Brian R. Bondy on Is it a better practice to typecast the pointer returned by malloc? Brian R. Bondy 2009-12-02T20:05:46Z 2009-12-02T20:05:46Z You may not link at all, but just be re-using the same source files. http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc/1835227#1835227 Comment by Brian R. Bondy on Is it a better practice to typecast the pointer returned by malloc? Brian R. Bondy 2009-12-02T19:54:15Z 2009-12-02T19:54:15Z You may for example have code inside a header file that you simply include into your C++ program. http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc/1835227#1835227 Comment by Brian R. Bondy on Is it a better practice to typecast the pointer returned by malloc? Brian R. Bondy 2009-12-02T19:42:50Z 2009-12-02T19:42:50Z It is very relevant, for example if you have plans for C++ programs to use your C code. http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc/1835201#1835201 Comment by Brian R. Bondy on Is it a better practice to typecast the pointer returned by malloc? Brian R. Bondy 2009-12-02T19:33:09Z 2009-12-02T19:33:09Z It is much better to be strict because it will avoid more bugs. http://stackoverflow.com/questions/1823406/what-does-utma-mean/1823415#1823415 Comment by Brian R. Bondy on What does __utma mean? Brian R. Bondy 2009-12-01T01:19:31Z 2009-12-01T01:19:31Z Sorry @Richard I think I may have over generalized what you were asking, but I'll keep my answer here. http://stackoverflow.com/questions/1823406/what-does-utma-mean/1823416#1823416 Comment by Brian R. Bondy on What does __utma mean? Brian R. Bondy 2009-12-01T01:17:04Z 2009-12-01T01:17:04Z I think I probably over generalized what the OP was asking. http://stackoverflow.com/questions/1821561/c-implications-of-making-a-method-virtual/1821582#1821582 Comment by Brian R. Bondy on C++ : implications of making a method virtual Brian R. Bondy 2009-11-30T18:47:02Z 2009-11-30T18:47:02Z Updated my answer. http://stackoverflow.com/questions/1815893/passing-void-in-c Comment by Brian R. Bondy on Passing void(*) in C++ Brian R. Bondy 2009-11-29T16:05:16Z 2009-11-29T16:05:16Z take a look at boost::bind and boost::function http://stackoverflow.com/questions/1810083/c-pointers-pointing-to-an-array-of-fixed-size/1810111#1810111 Comment by Brian R. Bondy on C pointers : pointing to an array of fixed size Brian R. Bondy 2009-11-27T19:19:21Z 2009-11-27T19:19:21Z Of course foo(p) will not work, foo is asking for a pointer to an array of 10 elements so you need to pass the address of your array... http://stackoverflow.com/questions/1798741/subversion-command-line-commit-does-nothing/1798757#1798757 Comment by Brian R. Bondy on Subversion command line commit does nothing Brian R. Bondy 2009-11-25T17:57:12Z 2009-11-25T17:57:12Z Possibly it would http://stackoverflow.com/questions/1792578/benefits-of-exporting-a-class-from-a-dll-vs-static-library/1792591#1792591 Comment by Brian R. Bondy on Benefits of exporting a class from a dll vs. static library Brian R. Bondy 2009-11-24T20:15:49Z 2009-11-24T20:15:49Z No problem, I think I'm mostly done for now :)