User P-A - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T05:28:46Zhttp://stackoverflow.com/feeds/user/4975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/221346/what-is-the-arrow-operator-synonym-for-in-c5What is the arrow operator (->) synonym for in C++?P-A2008-10-21T10:00:08Z2009-10-08T12:59:56Z
<p>I know it, forgets it and relearn it again. Time to write it down.</p>
http://stackoverflow.com/questions/221346/what-is-the-arrow-operator-synonym-for-in-c/221367#2213670Answer by P-A for What is the arrow operator (->) synonym for in C++?P-A2008-10-21T10:09:52Z2009-10-08T12:59:56Z<p>The C++-language defines the arrow operator (->) as a synonym for dereferencing a pointer and then use the .-operator on that address.</p>
<p>For example:</p>
<p>If you have a an object,'anObject', and a pointer, 'aPointer':</p>
<pre><code>SomeClass anObject = new SomeClass();
SomeClass *aPointer = &anObject;
</code></pre>
<p>To be able to use one of the objects methods you dereference the pointer and do a method call on that address:</p>
<pre><code>(*p).method();
</code></pre>
<p>Which could be written with the arrow operator:</p>
<pre><code>p->method();
</code></pre>
<p>The main reason of the existents of the arrow operator is that it shortens the typing of a very common task and it also kind of easy to forgot the parentheses around the dereferencing of the pointer. If you forgot the parentheses the .-operator will bind stronger then *-operator and make our example execute as:</p>
<pre><code>*(p.method()); // Not our intention!
</code></pre>
<p>Some of the other answer have also mention both that C++ operators can be overload and that it is not that common.</p>
http://stackoverflow.com/questions/221207/how-do-you-collect-programming-knowledge/221285#2212850Answer by P-A for How do you collect programming knowledgeP-A2008-10-21T09:23:35Z2009-08-26T10:00:07Z<p>It is a know fact that one of the best things you can do if you really want to understand or remember something is to explain it for someone else. With other words anything you do where you trying to teach or explain some think to others will be a great help to remember it and understand it.</p>
<p>So any "tool" that have an explanatory aspect I think is a good one. I think this page (<a href="http://stackoverflow.com">stackoverflow.com</a>) itself is extremely good example and for me personally one of the main reason I use it. But their are of course a lot of other way to do it, blogging for example.</p>
http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal0How to run a .sh-script in an Unix console/Mac terminal?P-A2009-04-09T11:36:26Z2009-04-09T12:42:16Z
<p>I know it, forgets it and relearn it again. Time to write it down.</p>
http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733833#7338331Answer by P-A for How to run a .sh-script in an Unix console/Mac terminal?P-A2009-04-09T11:39:32Z2009-04-09T11:52:29Z<p>To start the shell-script 'file.sh':</p>
<pre><code>sh file.sh
bash file.sh
</code></pre>
<p>Another option is set executable permission using chmod command:</p>
<pre><code>chmod +x file.sh
</code></pre>
<p>Now run .sh file as follows:</p>
<pre><code>./file.sh
</code></pre>
http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal1How to run C/C++ in a Unix console/Mac terminal?P-A2008-10-21T08:43:35Z2009-04-09T11:29:19Z
<p>I know it, forgets it and relearn it again. Time to write it down.</p>
http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221189#2211890Answer by P-A for How to run C/C++ in a Unix console/Mac terminal?P-A2008-10-21T08:45:46Z2008-10-21T08:45:46Z<p>./[name of the program]</p>
<p>For example ./a.out</p>
http://stackoverflow.com/questions/357521/is-there-a-decent-json-editor-around/1186667#1186667Comment by P-A on Is there a decent JSON editor around?P-A2009-10-15T12:30:36Z2009-10-15T12:30:36ZIs jsonpro 13$ good? Because all the other sucks! Excuse my language, say stuff like that is really not my style. In this case it is really true, I really can find any decent editor for json. Some validators like JSONLint is okay, but they are not editors.http://stackoverflow.com/questions/1401650/problem-with-list-of-strings-in-python/1401691#1401691Comment by P-A on Problem with list of strings in pythonP-A2009-09-09T19:58:00Z2009-09-09T19:58:00Z+1 Not mush to say after reading that link.http://stackoverflow.com/questions/1028781/how-should-a-programmer-learn-great-database-design/1029077#1029077Comment by P-A on How should a programmer learn great database design?P-A2009-09-09T08:33:13Z2009-09-09T08:33:13ZThe uncut version from Microsoft: <a href="http://msdn.microsoft.com/en-gb/express/bb403186.aspx" rel="nofollow">msdn.microsoft.com/en-gb/express/…</a>
The one on his own website (<a href="http://databaseanswers.com" rel="nofollow">databaseanswers.com</a>) and Youtube is only the first of two example he talks about.http://stackoverflow.com/questions/1028781/how-should-a-programmer-learn-great-database-design/1029077#1029077Comment by P-A on How should a programmer learn great database design?P-A2009-09-09T08:27:12Z2009-09-09T08:27:12Z+1 I really like that video as an introduction to. It is extremely dry, but I still think it gives a lot of good pointers for a database beginner.http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733901#733901Comment by P-A on How to run a .sh-script in an Unix console/Mac terminal?P-A2009-04-27T13:32:45Z2009-04-27T13:32:45ZThank you for taking the time to write a good answer to a simple question.http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733834#733834Comment by P-A on How to run a .sh-script in an Unix console/Mac terminal?P-A2009-04-09T11:45:23Z2009-04-09T11:45:23ZThank you for answering this quite obvious question. For a Mac guy like me it is easy to forget the old Unix commands between the laps.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406788#406788Comment by P-A on What's your most controversial programming opinion?P-A2009-02-23T17:07:25Z2009-02-23T17:07:25ZI teach at University-level and I think a object-oriented language is a good first language and Java was one of my favorites. But now-days I actually prefer Python, because it is a real script-language, fantastic syntax, multi-paradigm and Java have become harder to handle for beginners.http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/224784#224784Comment by P-A on How to run C/C++ in a Unix console/Mac terminal?P-A2008-10-22T17:03:22Z2008-10-22T17:03:22ZIf you add the comments from 'onebyone.livejournal.com' on my own answer about security this answer is complete. Thank you.http://stackoverflow.com/questions/221346/what-is-the-arrow-operator-synonym-for-in-c/221351#221351Comment by P-A on What is the arrow operator (->) synonym for in C++?P-A2008-10-21T10:16:54Z2008-10-21T10:16:54ZAfter your edit I think your post summons it in a good way.http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221189#221189Comment by P-A on How to run C/C++ in a Unix console/Mac terminal?P-A2008-10-21T10:14:42Z2008-10-21T10:14:42ZEven better point.http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221222#221222Comment by P-A on How to run C/C++ in a Unix console/Mac terminal?P-A2008-10-21T09:03:57Z2008-10-21T09:03:57ZThank you, that is a good answer too. I really try to use make as mush as I can and that is also a reason for me forgetting the syntax of the "easy" way.