User yesraaj - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T13:39:18Zhttp://stackoverflow.com/feeds/user/22076http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1827351/what-is-the-rationale-behind-ui-namespace-in-qt1What is the rationale behind UI namespace in Qt?yesraaj2009-12-01T16:33:18Z2009-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#18265560Answer by yesraaj for test pointer before deleteyesraaj2009-12-01T14:32:41Z2009-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-users1ASSERTION in a message box with custom message to users? yesraaj2009-11-20T06:16:31Z2009-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) && 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#18263350Answer by yesraaj for ASSERTION in a message box with custom message to users? yesraaj2009-12-01T13:56:03Z2009-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-runtime2What does it mean by C++ runtime?yesraaj2009-12-01T07:23:28Z2009-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#18158420Answer by yesraaj for I am new to threads, What does this compile error mean?yesraaj2009-11-29T15:43:19Z2009-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< ClientHandler*>(this_pointer);
self-> updateMessages(other_arg);
}
and call pthread_create as follows
pthread_create(&threads[0], NULL, &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#18079280Answer by yesraaj for constructor as default argumentyesraaj2009-11-27T10:24:20Z2009-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-c18What are the often misunderstood concepts in C++?yesraaj2009-02-18T12:26:31Z2009-11-23T21:38:25Z
<p>What are the often misunderstood concepts in c++?</p>
http://stackoverflow.com/questions/1784975/thread-local-storage-used-anywhere-else0Thread local storage used anywhere else?yesraaj2009-11-23T18:14:19Z2009-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-c0How to read/write data into excel 2007 in c++?yesraaj2009-11-13T05:47:02Z2009-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-543Why not resize and clear works in GotW 54?yesraaj2009-11-12T09:16:42Z2009-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#3518658Answer by yesraaj for Finding the type of an object in C++yesraaj2008-12-09T05:14:14Z2009-11-12T06:26:12Z<p>dynamic_cast should do the trick </p>
<pre><code>TYPE& dynamic_cast<TYPE&> (object);
TYPE* dynamic_cast<TYPE*> (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-deleting5Is there any reason to check for a NULL pointer before deleting ?yesraaj2009-03-05T15:47:00Z2009-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-developer0Best java book for a c++ developer?yesraaj2009-06-05T13:31:33Z2009-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-c1Makefile generator for c++?yesraaj2009-10-27T10:04:02Z2009-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-json4What is JSON?yesraaj2008-11-13T13:47:48Z2009-10-28T11:20:07Z
<p>What is JSON?</p>
http://stackoverflow.com/questions/1142320/do-you-recommend-the-art-of-multiprocessor-programming1Do You Recommend "The Art of Multiprocessor Programming?"yesraaj2009-07-17T09:43:34Z2009-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-buy4Python book to buy?yesraaj2009-03-26T15:35:19Z2009-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-java3create sql query in c++/java?yesraaj2009-01-05T09:10:23Z2009-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-development2IDE for Pl/SQL developmentyesraaj2008-11-20T09:05:57Z2009-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-20081Is it really worth porting from VC6 ->vc2005,2008?yesraaj2008-11-18T06:47:41Z2009-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-vector0Remove the common entities from two vector?yesraaj2009-03-13T07:06:59Z2009-10-14T13:02:04Z
<p>say I have <code>vector<class1a>,vector<class1b></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-heap0Why does Qt needs allocate of child objects in the Heap?yesraaj2009-02-25T12:32:34Z2009-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->setGeometry( 62, 40, 75, 30 );
quit->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-follow97C++ blogs that you regularly follow?yesraaj2008-09-30T06:28:53Z2009-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-model12What is the C++ memory model?yesraaj2008-10-21T04:19:38Z2009-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-c4Design by Contract in C++?yesraaj2009-07-24T06:58:57Z2009-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#15437350Answer by yesraaj for Visual Studio Go to Definitionyesraaj2009-10-09T13:26:16Z2009-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-plone2Django versus Plone?yesraaj2008-11-27T09:28:35Z2009-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-programming8Videos about C++ programming?yesraaj2009-02-24T11:12:32Z2009-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&emb=1&aq=f#" rel="nofollow">Advanced Topics in Programming Languages Series: C++ Threads</a></p>
<p><a href="http://video.google.com/videoplay?docid=3723782552647089226&hl=en" rel="nofollow">Text Processing with Boost</a></p>
<p><a href="http://video.google.com.au/videoplay?docid=-1790714981047186825&ei=BdqjScGJMZGgqgKgspT4Bg&hl=en" rel="nofollow">Concepts Extending C++ Templates For Generic Programming</a></p>
http://stackoverflow.com/questions/653705/beginners-book-for-pl-sql-programming1Beginner's book for PL/SQL programming?yesraaj2009-03-17T10:42:34Z2009-09-30T18:30:11Z
<p>Suggestion for PL/SQL programming book</p>
http://stackoverflow.com/questions/1826538/test-pointer-before-delete/1826584#1826584Comment by yesraaj on test pointer before deleteyesraaj2009-12-01T14:39:05Z2009-12-01T14:39:05Zdeleting a pointer whose value is NULL results to no op, so no need of if conditionhttp://stackoverflow.com/questions/1815705/i-am-new-to-threads-what-does-this-compile-error-mean/1815842#1815842Comment by yesraaj on I am new to threads, What does this compile error mean?yesraaj2009-11-29T16:17:49Z2009-11-29T16:17:49Zthanks, but I am not able to remove the posthttp://stackoverflow.com/questions/1807816/constructor-as-default-argument/1807842#1807842Comment by yesraaj on constructor as default argumentyesraaj2009-11-27T13:41:53Z2009-11-27T13:41:53ZA(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#1807842Comment by yesraaj on constructor as default argumentyesraaj2009-11-27T13:31:24Z2009-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#1807842Comment by yesraaj on constructor as default argumentyesraaj2009-11-27T13:10:29Z2009-11-27T13:10:29ZDo you mind post the full code?http://stackoverflow.com/questions/1807816/constructor-as-default-argument/1807842#1807842Comment by yesraaj on constructor as default argumentyesraaj2009-11-27T12:20:26Z2009-11-27T12:20:26ZDid 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#1807842Comment by yesraaj on constructor as default argumentyesraaj2009-11-27T10:10:19Z2009-11-27T10:10:19Zdoes that work??http://stackoverflow.com/questions/1727361/how-to-read-write-data-into-excel-2007-in-c/1727389#1727389Comment by yesraaj on How to read/write data into excel 2007 in c++?yesraaj2009-11-13T08:23:06Z2009-11-13T08:23:06ZI am skeptic about using .NET just for this purpose, since my app does not use .Net as of nowhttp://stackoverflow.com/questions/1720953/why-not-resize-and-clear-works-in-gotw-54/1720994#1720994Comment by yesraaj on Why not resize and clear works in GotW 54?yesraaj2009-11-12T09:32:44Z2009-11-12T09:32:44ZI thought the capacity will also be changed :-(http://stackoverflow.com/questions/1629782/makefile-generator-for-c/1629892#1629892Comment by yesraaj on Makefile generator for c++?yesraaj2009-10-27T13:35:11Z2009-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 executablehttp://stackoverflow.com/questions/1629782/makefile-generator-for-c/1629892#1629892Comment by yesraaj on Makefile generator for c++?yesraaj2009-10-27T10:58:41Z2009-10-27T10:58:41ZIs 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-cComment by yesraaj on Makefile generator for c++?yesraaj2009-10-27T10:33:54Z2009-10-27T10:33:54ZI 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#1629892Comment by yesraaj on Makefile generator for c++?yesraaj2009-10-27T10:26:50Z2009-10-27T10:26:50Zis jam and bjam do generate makefiles?http://stackoverflow.com/questions/1629782/makefile-generator-for-c/1629874#1629874Comment by yesraaj on Makefile generator for c++?yesraaj2009-10-27T10:25:48Z2009-10-27T10:25:48ZActually 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-cComment by yesraaj on Makefile generator for c++?yesraaj2009-10-27T10:23:42Z2009-10-27T10:23:42ZIf so it has to be make file and not makefile !!!