User yesraaj - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T13:39:18Z http://stackoverflow.com/feeds/user/22076 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1827351/what-is-the-rationale-behind-ui-namespace-in-qt 1 What is the rationale behind UI namespace in Qt? yesraaj 2009-12-01T16:33:18Z 2009-12-01T18:04:53Z <p>In the process of creating a user interface code from UI file Qt creates 2 classes with just the same definition.</p> <pre><code>class UI_CustomeUIClassFromUIFile { //code generated from UI file thru UIC } namespace ui { class CustomeUIClassFromUIFile public : UI_CustomeUIClassFromUIFile{}; }using namespace ui; </code></pre> <p>What is the reason for having 2 classes with just one inside UI namespace and other without namspace? Is it to support compiler that has no support for namespace, there is also a macro some thing like QTNAMESPACE.</p> http://stackoverflow.com/questions/1826538/test-pointer-before-delete/1826556#1826556 0 Answer by yesraaj for test pointer before delete yesraaj 2009-12-01T14:32:41Z 2009-12-01T14:32:41Z <p>No not really.</p> <blockquote> <p>Use smart pointers mainly scoped pointer, in special case go for shared pointers.</p> </blockquote> http://stackoverflow.com/questions/1768651/assertion-in-a-message-box-with-custom-message-to-users 1 ASSERTION in a message box with custom message to users? yesraaj 2009-11-20T06:16:31Z 2009-12-01T13:56:03Z <p>Is it good to define a new macro that craters my need of showing failed assertion to user and with just enough information for developers to debug the issue.</p> <blockquote> <p>Message for user, what the user should do with this message at last information for the developer</p> </blockquote> <pre><code>#define ASSERT(f) \ do \ { \ if (!(f) &amp;&amp; AfxAssertFailedLine(THIS_FILE, __LINE__)) \ AfxDebugBreak(); \ } while (0) \ </code></pre> <p>sample message fn that we use,</p> <pre><code>MessageBox(_T("Error in finding file."),_T("TITLE"),MB_ICONERROR); </code></pre> http://stackoverflow.com/questions/1768651/assertion-in-a-message-box-with-custom-message-to-users/1826335#1826335 0 Answer by yesraaj for ASSERTION in a message box with custom message to users? yesraaj 2009-12-01T13:56:03Z 2009-12-01T13:56:03Z <p>Just after asking this question I read about <code>SMART_ASSERT</code> mentioned by Andrei Alexandrescu and John Torjo in <a href="http://www.ddj.com/cpp/184403745" rel="nofollow">Enhancing Assertions</a>.This looks like that is right candidate for me, but the link to the source in that article is broken, can someone give me the source code for SMART_ASSERT?</p> http://stackoverflow.com/questions/1824533/what-does-it-mean-by-c-runtime 2 What does it mean by C++ runtime? yesraaj 2009-12-01T07:23:28Z 2009-12-01T07:31:30Z <p>What are all the activities done by C++ runtime? </p> http://stackoverflow.com/questions/1815705/i-am-new-to-threads-what-does-this-compile-error-mean/1815842#1815842 0 Answer by yesraaj for I am new to threads, What does this compile error mean? yesraaj 2009-11-29T15:43:19Z 2009-11-29T15:43:19Z <p>As pthread_create takes a free function, create a static function(is a free function) inside ClientHandler </p> <pre><code>static void Callback(void * this_pointer,int other_arg) { ClientHandler* self = static_cast&lt; ClientHandler*&gt;(this_pointer); self-&gt; updateMessages(other_arg); } and call pthread_create as follows pthread_create(&amp;threads[0], NULL, &amp;ClientHandler::Callback, (void *) pointer_to_ClientHandler,int other_arg); </code></pre> <p>That works because Callback is free function</p> http://stackoverflow.com/questions/1807816/constructor-as-default-argument/1807928#1807928 0 Answer by yesraaj for constructor as default argument yesraaj 2009-11-27T10:24:20Z 2009-11-27T10:33:39Z <pre><code>A(B());//create a B object and pass it to A A(B(1)); A(B(1,2)); </code></pre> <p>or define 3 different constructor for A(but that does not sound good to me).</p> http://stackoverflow.com/questions/560845/what-are-the-often-misunderstood-concepts-in-c 18 What are the often misunderstood concepts in C++? yesraaj 2009-02-18T12:26:31Z 2009-11-23T21:38:25Z <p>What are the often misunderstood concepts in c++?</p> http://stackoverflow.com/questions/1784975/thread-local-storage-used-anywhere-else 0 Thread local storage used anywhere else? yesraaj 2009-11-23T18:14:19Z 2009-11-23T18:53:45Z <p>Is thread local storage used anywhere else other than making global and static variables local to a thread?Is it useful in any new code that we write?</p> http://stackoverflow.com/questions/1727361/how-to-read-write-data-into-excel-2007-in-c 0 How to read/write data into excel 2007 in c++? yesraaj 2009-11-13T05:47:02Z 2009-11-22T14:07:08Z <p>How to read/write data into excel 2007 in c++?</p> http://stackoverflow.com/questions/1720953/why-not-resize-and-clear-works-in-gotw-54 3 Why not resize and clear works in GotW 54? yesraaj 2009-11-12T09:16:42Z 2009-11-12T09:37:15Z <p>Referring to article <a href="http://www.gotw.ca/gotw/054.htm" rel="nofollow">Gotw 54</a> by HerbSutter, he explain about </p> <p>1.Tthe Right Way To "Shrink-To-Fit" a vector or deque and </p> <p>2.The Right Way to Completely Clear a vector or deque</p> <blockquote> <p>Can we just use <code>container.resize()</code> and <code>container.clear()</code> for above task or Am I missing something.</p> </blockquote> http://stackoverflow.com/questions/351845/finding-the-type-of-an-object-in-c/351865#351865 8 Answer by yesraaj for Finding the type of an object in C++ yesraaj 2008-12-09T05:14:14Z 2009-11-12T06:26:12Z <p>dynamic_cast should do the trick </p> <pre><code>TYPE&amp; dynamic_cast&lt;TYPE&amp;&gt; (object); TYPE* dynamic_cast&lt;TYPE*&gt; (object); </code></pre> <p>The dynamic_cast keyword casts a datum from one pointer or reference type to another, performing a runtime check to ensure the validity of the cast.</p> <p>If you attempt to cast to pointer to a type that is not a type of actual object, the result of the cast will be NULL. If you attempt to cast to reference to a type that is not a type of actual object, the cast will throw a bad_cast exception.</p> <p><strong>Make sure there is at least one virtual function in Base class to make dynamic_cast work.</strong></p> http://stackoverflow.com/questions/615355/is-there-any-reason-to-check-for-a-null-pointer-before-deleting 5 Is there any reason to check for a NULL pointer before deleting ? yesraaj 2009-03-05T15:47:00Z 2009-11-11T21:19:00Z <p>I see some legacy code checking for null before deleting the pointer. as like below</p> <pre><code>if(NULL != pSomeObject)//any reason for checking for null { delete pSomeObject; pSomeObject = NULL;//any reason for assigning null } </code></pre> <p>my compiler is vc6 pre-standard one though.</p> http://stackoverflow.com/questions/955863/best-java-book-for-a-c-developer 0 Best java book for a c++ developer? yesraaj 2009-06-05T13:31:33Z 2009-11-04T11:01:39Z <p>Thinking in Java third edition is the one, for which I have a eBook with me.My primary focus is to take advantage of google frameworks like Android and GWT.</p> http://stackoverflow.com/questions/1629782/makefile-generator-for-c 1 Makefile generator for c++? yesraaj 2009-10-27T10:04:02Z 2009-11-03T22:37:23Z <p>Does the following build systems cmake, jam and bjam also generate makefiles like qmake do?What utility MS visual c++ uses to generate make file?</p> http://stackoverflow.com/questions/286945/what-is-json 4 What is JSON? yesraaj 2008-11-13T13:47:48Z 2009-10-28T11:20:07Z <p>What is JSON?</p> http://stackoverflow.com/questions/1142320/do-you-recommend-the-art-of-multiprocessor-programming 1 Do You Recommend "The Art of Multiprocessor Programming?" yesraaj 2009-07-17T09:43:34Z 2009-10-25T11:50:31Z <p>What is your opinion on <a href="http://rads.stackoverflow.com/amzn/click/0123705916" rel="nofollow">The Art of Multiprocessor Programming</a>, by Maurice Herlihy? Do you recommend it?</p> <blockquote> <p>Please do not downvote other's opinions; if you have a different opinion, just add it as a new answer.</p> </blockquote> http://stackoverflow.com/questions/686301/python-book-to-buy 4 Python book to buy? yesraaj 2009-03-26T15:35:19Z 2009-10-21T16:56:15Z <p>Is it worth to buy <a href="http://rads.stackoverflow.com/amzn/click/0596100469" rel="nofollow">Python In A Nutshell second edition</a> or should I wait for next version </p> <p>Suggestion for any other book is welcome</p> <blockquote> <p>I am looking for a book like The c++ progrogramming language by stroustrup but for python</p> </blockquote> http://stackoverflow.com/questions/412615/create-sql-query-in-c-java 3 create sql query in c++/java? yesraaj 2009-01-05T09:10:23Z 2009-10-20T02:39:25Z <p>which method do you prefer for creating dynamic sql queries? formating or streaming? Is it just preference or there any reason one is better than other?Or any special library you use to it.</p> <p>EDIT: Please answer in case of c++.</p> http://stackoverflow.com/questions/304716/ide-for-pl-sql-development 2 IDE for Pl/SQL development yesraaj 2008-11-20T09:05:57Z 2009-10-15T20:41:58Z <p>Is there any free IDE for Pl/SQL development</p> http://stackoverflow.com/questions/298016/is-it-really-worth-porting-from-vc6-vc2005-2008 1 Is it really worth porting from VC6 ->vc2005,2008? yesraaj 2008-11-18T06:47:41Z 2009-10-15T20:30:24Z <p>What are all the problem that you foresee in doing that.</p> http://stackoverflow.com/questions/641724/remove-the-common-entities-from-two-vector 0 Remove the common entities from two vector? yesraaj 2009-03-13T07:06:59Z 2009-10-14T13:02:04Z <p>say I have <code>vector&lt;class1a&gt;,vector&lt;class1b&gt;</code> how to remove the common entities from both of them I have defined ==operator for the class1 objects class1a,class1b</p> http://stackoverflow.com/questions/585801/why-does-qt-needs-allocate-of-child-objects-in-the-heap 0 Why does Qt needs allocate of child objects in the Heap? yesraaj 2009-02-25T12:32:34Z 2009-10-14T12:27:17Z <p>class MyWidget : public QWidget { public: MyWidget( QWidget *parent=0, const char *name=0 ); };</p> <pre><code>MyWidget::MyWidget( QWidget *parent, const char *name ) : QWidget( parent, name ) { QPushButton *quit = new QPushButton( "Quit", this, "quit" ); quit-&gt;setGeometry( 62, 40, 75, 30 ); quit-&gt;setFont( QFont( "Times", 18, QFont::Bold ) ); </code></pre> <p>} </p> <p>In the above code </p> <pre><code>quit </code></pre> <p>is allocated in Heap and it is necessary since it is child of MyWidget</p> <p>Why does Qt needs allocate of child objects in the Heap?</p> http://stackoverflow.com/questions/151974/c-blogs-that-you-regularly-follow 97 C++ blogs that you regularly follow? yesraaj 2008-09-30T06:28:53Z 2009-10-12T10:56:07Z <p>What are all the c++ blogs that you follow </p> <p><strong><em>Please add one url for one posting.</em></strong></p> http://stackoverflow.com/questions/220752/what-is-the-c-memory-model 12 What is the C++ memory model? yesraaj 2008-10-21T04:19:38Z 2009-10-11T13:06:27Z <p>What is the C++ memory model as defined by current standard?</p> <p>What about upcoming C++0x standard? Will it change the memory model to support concurrency better?</p> http://stackoverflow.com/questions/1176131/design-by-contract-in-c 4 Design by Contract in C++? yesraaj 2009-07-24T06:58:57Z 2009-10-11T06:48:30Z <p>Is that any library that aids in implementing design by contract principle in c++ application. EDIT:</p> <blockquote> <p>Looking for much better than ASSERT something like <a href="http://www.codeproject.com/KB/cpp/DesignByContract.aspx" rel="nofollow">this</a></p> </blockquote> http://stackoverflow.com/questions/1543711/visual-studio-go-to-definition/1543735#1543735 0 Answer by yesraaj for Visual Studio Go to Definition yesraaj 2009-10-09T13:26:16Z 2009-10-09T13:26:16Z <p>Yes only the interfaces for MFC will be given in header file.Unless it is implemented with Template you will not be able to access the actual definition.The dlls have implementation for those interfaces.</p> http://stackoverflow.com/questions/323313/django-versus-plone 2 Django versus Plone? yesraaj 2008-11-27T09:28:35Z 2009-10-08T14:01:06Z <p>I plan to read about Django. Should I go with <a href="http://en.wikipedia.org/wiki/Django%5F%28web%5Fframework%29" rel="nofollow">Django</a> or <a href="http://en.wikipedia.org/wiki/Plone%5F%28software%29" rel="nofollow">Plone</a>? What makes Django/Plone better than the other?</p> <p>Edit: From a comment below:</p> <blockquote> <p>I just wanted to know a framework for developing web applications.</p> </blockquote> http://stackoverflow.com/questions/581381/videos-about-c-programming 8 Videos about C++ programming? yesraaj 2009-02-24T11:12:32Z 2009-10-07T11:00:48Z <p>Do you have these kinds of video like those listed below.It better to learn from experts talk.So we don't learn it the wrong way</p> <p><a href="http://video.google.com/videosearch?q=c%2B%2B%2Bthreads&amp;emb=1&amp;aq=f#" rel="nofollow">Advanced Topics in Programming Languages Series: C++ Threads</a></p> <p><a href="http://video.google.com/videoplay?docid=3723782552647089226&amp;hl=en" rel="nofollow">Text Processing with Boost</a></p> <p><a href="http://video.google.com.au/videoplay?docid=-1790714981047186825&amp;ei=BdqjScGJMZGgqgKgspT4Bg&amp;hl=en" rel="nofollow">Concepts Extending C++ Templates For Generic Programming</a></p> http://stackoverflow.com/questions/653705/beginners-book-for-pl-sql-programming 1 Beginner's book for PL/SQL programming? yesraaj 2009-03-17T10:42:34Z 2009-09-30T18:30:11Z <p>Suggestion for PL/SQL programming book</p> http://stackoverflow.com/questions/1826538/test-pointer-before-delete/1826584#1826584 Comment by yesraaj on test pointer before delete yesraaj 2009-12-01T14:39:05Z 2009-12-01T14:39:05Z deleting a pointer whose value is NULL results to no op, so no need of if condition http://stackoverflow.com/questions/1815705/i-am-new-to-threads-what-does-this-compile-error-mean/1815842#1815842 Comment by yesraaj on I am new to threads, What does this compile error mean? yesraaj 2009-11-29T16:17:49Z 2009-11-29T16:17:49Z thanks, but I am not able to remove the post http://stackoverflow.com/questions/1807816/constructor-as-default-argument/1807842#1807842 Comment by yesraaj on constructor as default argument yesraaj 2009-11-27T13:41:53Z 2009-11-27T13:41:53Z A(B par = B()) or A(B par = B(1)) or A(B par = B(1,2)) would have answered all my questions :). http://stackoverflow.com/questions/1807816/constructor-as-default-argument/1807842#1807842 Comment by yesraaj on constructor as default argument yesraaj 2009-11-27T13:31:24Z 2009-11-27T13:31:24Z @Naveen thanks, you just can have one of those constructor right? http://stackoverflow.com/questions/1807816/constructor-as-default-argument/1807842#1807842 Comment by yesraaj on constructor as default argument yesraaj 2009-11-27T13:10:29Z 2009-11-27T13:10:29Z Do you mind post the full code? http://stackoverflow.com/questions/1807816/constructor-as-default-argument/1807842#1807842 Comment by yesraaj on constructor as default argument yesraaj 2009-11-27T12:20:26Z 2009-11-27T12:20:26Z Did you mean to create <code>par</code> as object of <code>B</code> and pass the same to <code>A</code>, then it did not work for me, though I am not the down voter. http://stackoverflow.com/questions/1807816/constructor-as-default-argument/1807842#1807842 Comment by yesraaj on constructor as default argument yesraaj 2009-11-27T10:10:19Z 2009-11-27T10:10:19Z does that work?? http://stackoverflow.com/questions/1727361/how-to-read-write-data-into-excel-2007-in-c/1727389#1727389 Comment by yesraaj on How to read/write data into excel 2007 in c++? yesraaj 2009-11-13T08:23:06Z 2009-11-13T08:23:06Z I am skeptic about using .NET just for this purpose, since my app does not use .Net as of now http://stackoverflow.com/questions/1720953/why-not-resize-and-clear-works-in-gotw-54/1720994#1720994 Comment by yesraaj on Why not resize and clear works in GotW 54? yesraaj 2009-11-12T09:32:44Z 2009-11-12T09:32:44Z I thought the capacity will also be changed :-( http://stackoverflow.com/questions/1629782/makefile-generator-for-c/1629892#1629892 Comment by yesraaj on Makefile generator for c++? yesraaj 2009-10-27T13:35:11Z 2009-10-27T13:35:11Z I am trying to mean the same, that jam has its own syntax for jamfiles(configuration file,something like makefile for make but precise) that can be used to build the src + includes to executable http://stackoverflow.com/questions/1629782/makefile-generator-for-c/1629892#1629892 Comment by yesraaj on Makefile generator for c++? yesraaj 2009-10-27T10:58:41Z 2009-10-27T10:58:41Z Is it jam use there own version of makefile(jamfile) that jam can build the source using it? http://stackoverflow.com/questions/1629782/makefile-generator-for-c Comment by yesraaj on Makefile generator for c++? yesraaj 2009-10-27T10:33:54Z 2009-10-27T10:33:54Z I am really not concern about making it make/makefile unless everyone understand I am talking about general makefile. http://stackoverflow.com/questions/1629782/makefile-generator-for-c/1629892#1629892 Comment by yesraaj on Makefile generator for c++? yesraaj 2009-10-27T10:26:50Z 2009-10-27T10:26:50Z is jam and bjam do generate makefiles? http://stackoverflow.com/questions/1629782/makefile-generator-for-c/1629874#1629874 Comment by yesraaj on Makefile generator for c++? yesraaj 2009-10-27T10:25:48Z 2009-10-27T10:25:48Z Actually I am not looking for a makefile generator but to know whether jam and bjam are one of them. http://stackoverflow.com/questions/1629782/makefile-generator-for-c Comment by yesraaj on Makefile generator for c++? yesraaj 2009-10-27T10:23:42Z 2009-10-27T10:23:42Z If so it has to be make file and not makefile !!!