active questions tagged operators - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:36:52Z http://stackoverflow.com/feeds/tag/operators http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803854/is-there-a-difference-on-how-java-performs-operations-using-shortcut-operators-fr 0 Is there a difference on how java performs operations using shortcut operators from the regular ones? Jronny 2009-11-26T14:06:34Z 2009-11-26T14:16:56Z <p>I am working on a java program concerning the pascal's triangle.</p> <p>So this is how it is coded:</p> <pre><code>for(int i = 0; i &lt; 5; i++){ for(int j = 0, x = 1; j &lt;= i; j++){ System.out.print(x + " "); x = x * (i - j) / (j + 1); } System.out.println(); } </code></pre> <p>and it shows: <br> 1 <br> 1 1 <br> 1 2 1 <br> 1 3 3 1 <br> 1 4 6 4 1 </p> <p>But when I tried to change the code to:</p> <pre><code>for(int i = 0; i &lt; 5; i++){ for(int j = 0, x = 1; j &lt;= i; j++){ System.out.print(x + " "); x *= (i - j) / (j + 1); } System.out.println(); } </code></pre> <p>and as you may have noticed, only the operator has changed to *=, but the result is:</p> <p>1 <br> 1 1 <br> 1 2 0 <br> 1 3 3 0 <br> 1 4 4 0 0 </p> <p>Any idea what must have happened? Thanks in advance!</p> http://stackoverflow.com/questions/1775651/whats-the-operator-in-prolog-and-how-can-i-use-it 0 What's the -> operator in Prolog and how can I use it? Juanjo Conti 2009-11-21T14:43:55Z 2009-11-22T05:17:07Z <p>I've read about it in a book but it wasn't explained at all. I also never saw it in a program. Is part of Prolog syntax? What's it for? Do you use it?</p> <p>Thanks</p> http://stackoverflow.com/questions/1642028/what-is-the-name-of-this-operator 156 What is the name of this operator: "-->"? GMan 2009-10-29T06:57:45Z 2009-11-19T19:46:56Z <p>After reading <a href="http://groups.google.com/group/comp.lang.c++.moderated/msg/33f173780d58dd20" rel="nofollow">this post</a> on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both VS 2008 and G++ 4.4. The code:</p> <pre><code>#include &lt;stdio.h&gt; int main() { int x = 10; while( x --&gt; 0 ) // x goes to 0 { printf("%d ", x); } } </code></pre> <p>Where in the standard is this defined, and where did it come from?</p> <p>I'd assume C, since it works in GCC as well, but I put C++ on there just in case C++ has more to mention on it. On a more subjective note, I've never heard of this before, had anybody else? Is it worth using?</p> http://stackoverflow.com/questions/1758608/is-there-an-non-short-circuited-logical-and-in-c 5 Is there an Non-Short circuited logical "and" in C++? Luciano 2009-11-18T19:52:31Z 2009-11-18T22:45:54Z <p>tl;dr: Is there a non-short circuit logical AND in C++ (similar to &amp;&amp;)?</p> <p>I've got 2 functions that I want to call, and use the return values to figure out the return value of a 3rd composite function. The issue is that I always want both functions to evaluate (as they output log information about the state of the system)</p> <p>IE:</p> <pre><code>bool Func1(int x, int y){ if( x &gt; y){ cout &lt;&lt; "ERROR- X &gt; Y" &lt;&lt; endl; } } bool Func2(int z, int q){ if( q * 3 &lt; z){ cout &lt;&lt; "ERROR- Q &lt; Z/3" &lt;&lt; endl; } } bool Func3(int x, int y, int z, int q){ return ( Func1(x, y) &amp;&amp; Func2(z, q) ); } </code></pre> <p>Of course, the conditionals aren't quite that simple in the functions, and yes, I realize that I could use temporary variables to store the returns of the two functions and then do the "short-circuit" logic on the temporary variables, but I was wondering if there was an "elegant" language solution to keep the one-line return in Func3 while still getting the logging messages from both functions. </p> <p><hr></p> <p>Summary of responses:</p> <p>The "bitwise" operators | and &amp; can be used to get the effect, but only if the return type is bool. I found no mention of this in the ANSI C++ spec. From what I can tell, this works because the "bool" is converted to an int (true = 1, false = 0), and then the bitwise operator is used, then it is converted back to a bool.</p> <p>The Operators "+" and "<em>" can also be used. This is not mentioned in the ANSI C++ Spec, but probably works because of the same reason as above. "+" give "or" because true is converted to 1, and then anything other than 0 is converted back to true. "</em>" works for "and" because 1 (true) * 0 (false) == 0(false) and 1(true) * 1(true) == 1(true)</p> <p>Both of these seem to rely on implicit type conversion to integer and then back to bool. Both of these will likely mess up whomever tries to maintain the code.</p> <p>Other responses boil down to "Just use temporaries" or "Implement your own" which was not the question. The goal was to see if there was already an operator implemented in the C++ standard to do it.</p> http://stackoverflow.com/questions/1756015/whats-the-difference-between-i-and-i-in-php 7 What's the difference between ++$i and $i++ in PHP? Steven 2009-11-18T13:37:18Z 2009-11-18T14:12:51Z <p>What's the difference between ++$i and $i++ in PHP?</p> http://stackoverflow.com/questions/589549/php-vs-operator 14 php == vs === operator acidzombie24 2009-02-26T07:48:06Z 2009-11-18T06:38:41Z <p>What is the difference between == and === in php. I am unsure when to use both.</p> <p><em>Updated note:</em> So that it shows up in StackOverflow search, the difference between == and === is the same as the difference between != and !==.</p> http://stackoverflow.com/questions/1753315/what-does-the-operator-do-in-c-when-declaring-a-variable 0 What does the ^ operator do in C++ (when declaring a variable)? [closed] MrDatabase 2009-11-18T02:46:40Z 2009-11-18T02:58:22Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/202463/what-does-the-caret-mean-in-c-cli">What does the caret mean in C++/CLI?</a> </p> </blockquote> <p>For example if I declare a variable like this:</p> <pre><code>vector&lt;int&gt;^ myVec; </code></pre> <p>what does the ^ operator do?</p> http://stackoverflow.com/questions/1751225/javascript-string-assignment-operators 2 Javascript String Assignment Operators Josh Stodola 2009-11-17T19:36:21Z 2009-11-17T20:20:15Z <p>How come I can use <code>+=</code> on a string, but I cannot use <code>-=</code> on it?</p> <p>For example...</p> <pre><code>var test = "Test"; var arr = "&amp;#8660;" test += arr; alert(test); // Shows "Test&amp;#8660;" test -= arr; alert(test); // Shows "NaN" </code></pre> http://stackoverflow.com/questions/1746613/bitwise-operation-and-usage 1 Bitwise Operation and Usage Nimbuz 2009-11-17T04:37:05Z 2009-11-17T05:47:59Z <pre><code>x = 1 # 0001 x &lt;&lt; 2 # Shift left 2 bits: 0100 # Result: 4 x | 2 # Bitwise OR: 0011 # Result: 3 x &amp; 1 # Bitwise AND: 0001 # Result: 1 </code></pre> <p>I can understand the arithmetic operators in Python (and other langs), but I never understood 'bitwise' operators quite well. In the above example (from a Python book), I understand the left-shift but not the other two.</p> <p>Also, what are bitwise operators actually used for? I'd appreciate some examples.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1740225/php-comparison-operators-and-data-types 1 PHP Comparison Operators and Data Types Paul Baker 2009-11-16T05:22:26Z 2009-11-16T07:21:21Z <p>I'm currently working through O'Reilly's "Programming PHP" and have come across this table titled "Type of comparison performed by the comparison operators":</p> <pre> First Operand | Second Operand | Comparison ----------------------------------------------------------------------- Number | Number | Numeric String that is numeric | String that is numeric | Numeric String that is numeric | Number | Numeric String that is not numeric | Number | Lexicographic String that is numeric | String that is not numeric | Lexicographic String that is not numeric | String that is not numeric | Lexicographic </pre> <p>My rule of thumb for which type of comparison is performed has been "numeric if and only if at least one operand is a number or both operands are numeric strings". This seems to be supported by the <a href="http://php.net/manual/en/language.operators.comparison.php" rel="nofollow">php.net page on Comparison Operators</a>, which states "If you compare an integer with a string, the string is converted to a number. If you compare two numerical strings, they are compared as integers."</p> <p>However, this would imply that the comparison in the fourth row of the table should be "Numeric". Does the table contain an error, or is my rule wrong?</p> http://stackoverflow.com/questions/1731413/sql-operator 0 SQL "*=" operator [closed] Andy White 2009-11-13T19:38:08Z 2009-11-13T21:21:31Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/557767/transact-sql-shorthand-join-syntax">Transact-SQL shorthand join syntax?</a> </p> </blockquote> <p>I ran across a T-SQL script that does something like this in the where clause:</p> <pre><code>... where o.obj_code *= c.prv_code </code></pre> <p>I can't seem to find any documentation on the *= operator. Can anyone explain its use and maybe point to some documentation on it? Is this specific to T-SQL?</p> http://stackoverflow.com/questions/1722896/vb-to-c-functions 2 VB to C# Functions Angel Escobedo 2009-11-12T15:12:12Z 2009-11-12T19:10:51Z <p>Which are the equivalent of the following operators from VB.Net to C#?</p> <ul> <li><strong>UBound()</strong></li> <li><strong>LBound()</strong></li> <li>IsNothing()</li> <li>Chr()</li> <li>Len()</li> <li>UCase() </li> <li>LCase()</li> <li>Left()</li> <li>Right()</li> <li>RTrim()</li> <li>LTrim()</li> <li>Trim()</li> <li>Mid()</li> <li>Replace()</li> <li>Split() </li> <li>Join()</li> <li>MsgBox() </li> <li>IIF()</li> </ul> http://stackoverflow.com/questions/1716962/compilerservices-operators-equivalent-on-c 0 CompilerServices.Operators equivalent on C# Angel Escobedo 2009-11-11T17:54:40Z 2009-11-11T18:32:49Z <p>Hello, I want to know if exists namespace available for C#, cause this class come from :</p> <pre><code>Microsoft.VisualBasic.CompilerServices </code></pre> <p>cause I want to do something like this, but in C#:</p> <pre><code>Dim m = GetType(CompilerServices.Operators).GetMethod("LikeString") </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1700713/unary-operator-result 3 Unary operator result Ree 2009-11-09T12:31:09Z 2009-11-10T07:37:00Z <p>In K&amp;R ANSI C book, section A.7.4.5 (Unary Minus Operator) it is stated:</p> <blockquote> <p>... The negative of an unsigned quantity is computed by subtracting the promoted value from the largest value of the promoted type and adding one; ...</p> </blockquote> <p>How exactly is this calculated? Could you give a short C example? I don't see how this could yield the negative of, say, 200u: subtracting 200 from a max value of any integral type (signed or unsigned) and adding 1 does not result in -200.</p> <p>Note that I do know what the unary minus does - the problem is that I don't see how the result is calculated according to the description.</p> http://stackoverflow.com/questions/183853/in-python-what-is-the-difference-between-and-when-used-for-division 13 In Python, what is the difference between '/' and '//' when used for division? Ray Vega 2008-10-08T17:16:35Z 2009-11-09T23:55:18Z <p>Is there a benefit to using one over the other? They both seem to return the same results.</p> <pre><code>&gt;&gt;&gt; 6/3 2 &gt;&gt;&gt; 6//3 2 </code></pre> http://stackoverflow.com/questions/1703979/which-c-logical-operators-do-you-use-and-or-not-and-the-ilk-or-c-style-opera 2 Which C++ logical operators do you use: and, or, not and the ilk or C style operators? why? unknown (google) 2009-11-09T21:31:20Z 2009-11-09T22:27:35Z <p>leisure/curiosity question as implied in the title.</p> <p>I personally prefer the new operators as to make code more readable in my opinion.</p> <p>Which ones do use yourself? What is your reason for choosing one over the other one?</p> <p>also Emacs highlights those operators differently so I get more visual feedback when looking at the screen. I know the old operators can be highlighted as well but the ISO646 highlighted by default</p> http://stackoverflow.com/questions/1692626/can-i-use-operators-as-function-callback-in-php 3 Can I use operators as function callback in PHP? John David Koise 2009-11-07T10:13:41Z 2009-11-07T16:45:21Z <p>Suppose I've the following function:</p> <pre><code>function mul() { return array_reduce(func_get_args(), '*'); } </code></pre> <p>Is is possible to use the * operator as a callback function? Is there any other way?</p> http://stackoverflow.com/questions/1692839/what-is-the-difference-between-and-operator 1 What is the difference between ~ and ! operator? Rakesh Juyal 2009-11-07T12:13:39Z 2009-11-07T16:31:51Z <p>Please let me know the difference between ~ and ! operator in java. </p> http://stackoverflow.com/questions/1683008/what-does-operator-do-in-python 1 What does ** operator do in Python? rich johnson 2009-11-05T19:38:42Z 2009-11-05T21:31:37Z <p>What does this mean in python:</p> <pre><code>sock.recvfrom(2**16) </code></pre> <p>I know what sock is and I get the jest of <code>recvfrom</code> function, but what the hell is <code>2**16</code>?</p> http://stackoverflow.com/questions/1659992/comparison-of-conditional-statements 3 Comparison of conditional statements. Ravi 2009-11-02T08:14:06Z 2009-11-02T13:40:26Z <p>Are following ways are same.(Considering the evaluation time)</p> <pre><code>if(Condition1) { //code1 } else { //code2 } </code></pre> <p><code>condition1 ? code1 : code2 </code></p> <p>Are they just syntactically different?</p> <p>It may seem a stupid question.But I want to clear my doubt. </p> http://stackoverflow.com/questions/1656110/does-delphi-have-some-fast-operators 2 Does delphi have some "fast" operators ? (+=, -=, ...) azera 2009-11-01T01:31:28Z 2009-11-02T05:16:22Z <p>Hello,</p> <p>Very simple question but I couldn't find an answer on google</p> <p>In delphi, is there a way to shorten this kind of code:</p> <pre><code>MyVar := MyVar + X; </code></pre> <p>Like in C++ I would do MyVar += X;. Given how trivial and useful it is there must be way, but I can't find any option for that anywhere ...</p> <p>Thanks for any help</p> http://stackoverflow.com/questions/1656090/overriding-instance-variable-arrays-operators-in-ruby 0 Overriding instance variable array's operators in Ruby tt 2009-11-01T01:16:13Z 2009-11-01T01:45:20Z <p>Sorry for the poor title, I don't really know what to call this.</p> <p>I have something like this in Ruby:</p> <pre><code>class Test def initialize @my_array = [] end attr_accessor :my_array end test = Test.new test.my_array &lt;&lt; "Hello, World!" </code></pre> <p>For the <code>@my_array</code> instance variable, I want to override the <code>&lt;&lt;</code> operator so that I can first process whatever is being inserted to it. I've tried <code>@my_array.&lt;&lt;(value)</code> as a method in the class, but it didn't work.</p> http://stackoverflow.com/questions/1378195/what-does-the-symbol-mean-in-objective-c 2 What does the & symbol mean in Objective-C? Adam Libonatti-Roche 2009-09-04T09:37:31Z 2009-10-30T19:02:59Z <p>What does the <code>&amp;</code> symbol mean in Objective-C? I am currently looking at data constucts and am getting really confused by it.</p> <p>I have looked around the web for it but have not found an answer at all. I know this is possibly a basic Objective-C concept, but I just can't get my head around it.</p> <p>For example:</p> <pre><code>int *pIntData = (int *)&amp;incomingPacket[0]; </code></pre> <p>What is the code doing with incoming packet here?</p> http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator 18 Why don't C++ compilers define operator== and operator!= ? Rob 2008-10-20T09:42:36Z 2009-10-30T09:44:56Z <p>I am a big fan of letting the compiler do as much work for you as possible. When writing a simple class the compiler can give you the following for 'free':</p> <ul> <li>A default (empty) constructor</li> <li>A copy constructor</li> <li>A destructor</li> <li>An assignment operator (<code>operator=</code>)</li> </ul> <p>But it cannot seem to give you any comparison operators - such as <code>operator==</code> or <code>operator!=</code>. For example:</p> <pre><code>class foo { public: std::string str_; int n_; }; foo f1; // Works foo f2(f1); // Works foo f3; f3 = f2; // Works if (f3 == f2) // Fails { } if (f3 != f2) // Fails { } </code></pre> <p>Is there a good reason for this? Why would performing a member-by-member comparison be a problem? Obviously if the class allocates memory then you'd want to be careful, but for a simple class surely the compiler could do this for you?</p> http://stackoverflow.com/questions/1406604/what-does-operator-mean-in-javascript 11 What does "!!" operator mean in javascript? Andrey 2009-09-10T17:25:46Z 2009-10-29T21:22:40Z <p>I've just walked into this code:</p> <pre><code>val.enabled = !!enable </code></pre> <p>and have no idea what does "!!" do... I googled JavaScript operators but haven't found this one.</p> http://stackoverflow.com/questions/1643897/vectorising-operators-in-c 1 Vectorising operators in C# Richie Cotton 2009-10-29T13:51:46Z 2009-10-29T15:37:21Z <p>I spend much of my time programming in R or MATLAB. These languages are typically used for manipulating arrays and matrices, and consequently, they have vectorised operators for addition, equality, etc.</p> <p>For example, in MATLAB, adding two arrays</p> <pre><code>[1.2 3.4 5.6] + [9.87 6.54 3.21] </code></pre> <p>returns an array of the same size</p> <pre><code>ans = 11.07 9.94 8.81 </code></pre> <p>Switching over to C#, we need a loop, and it feels like a lot of code.</p> <pre><code>double[] a = { 1.2, 3.4, 5.6 }; double[] b = { 9.87, 6.54, 3.21 }; double[] sum = new double[a.Length]; for (int i = 0; i &lt; a.Length; ++i) { sum[i] = a[i] + b[i]; } </code></pre> <p>How should I implement vectorised operators using C#? These should preferably work for all numeric array types (and <code>bool[]</code>). Working for multidimensional arrays is a bonus.</p> <p>The first idea I had was to overload the operators for <code>System.Double[]</code>, etc. directly. This has a number of problems though. Firstly, it could cause confusion and maintainability issues if built-in classes do not bahave as expected. Secondly, I'm not sure if it is even possible to change the behaviour of these built-in classes.</p> <p>So my next idea was to derive a class from each numerical type and overload the operators there. This creates the hassle of converting from <code>double[]</code> to <code>MyDoubleArray</code> and back, which reduces the benefit of me doing less typing.</p> <p>Also, I don't really want to have to repeat a load of almost identical functionality for every numeric type. This lead to my next idea of a generic operator class. In fact, someone else had also had this idea: there's a generic operator class in Jon Skeet's <a href="http://www.yoda.arachsys.com/csharp/miscutil/" rel="nofollow">MiscUtil</a> library. </p> <p>This gives you a method-like prefix syntax for operations, e.g.</p> <pre><code>double sum = Operator&lt;double&gt;.Add(3.5, -2.44); // 1.06 </code></pre> <p>The trouble is, since the array types don't support addition, you can't just do something like</p> <pre><code>double[] sum = Operator&lt;double[]&gt;.Add(a, b); // Throws InvalidOperationException </code></pre> <p>I've run out of ideas. Can you think of anything that will work?</p> http://stackoverflow.com/questions/1640988/should-i-overload-operator 2 Should I Overload == Operator? Maxim Z. 2009-10-29T00:31:41Z 2009-10-29T01:10:08Z <p>How does the <code>==</code> operator really function in C#? If it used to compare objects of class <em>A</em>, will it try to match all of <em>A</em>'s properties, or will it look for pointers to the same memory location (or maybe something else)?</p> <p>Let's create a hypothetical example. I'm writing an application that utilizes the Twitter API, and it has a <em>Tweet</em> class, which has all the properties of a single tweet: text, sender, date&amp;time, source, etc. If I want to compare objects of class <em>Tweet</em> for equivalence, can I just use:</p> <pre><code>Tweet a, b; if (a == b) { //do something... } </code></pre> <p>Will that <strong>check for equivalence of all the properties</strong> of the <em>Tweet</em> class between <em>a</em> and <em>b</em>?</p> <p>If not, <strong>would the correct approach be to overload the <code>==</code> operator</strong> to explicitly check for equivalence of all the fields?</p> <p><strong>UPDATE:</strong> From the first two answers, am I right in assuming:</p> <ul> <li>If the <code>==</code> operator or <em>Equals</em> method is not overloaded for a class, the <code>==</code> operator for the <em>object</em> class is used.</li> <li>The <code>==</code> operator for the <em>object</em> class checks for equality in memory location.</li> <li>I have to overload the <code>==</code> operator or the <em>Equals</em> method to accomplish this task.</li> <li>In the overload, I have to check for equivalence in properties manually, so <strong>there is no way to do it semi-automatically, say, in a loop</strong>, right?</li> </ul> <p><strong>UPDATE #2:</strong> Yuriy made a comment that it is possible to do check for equivalence in properties in the <code>==</code> operator with <strong>reflection</strong>. How can this be done? Could you give me some sample code? Thanks!</p> http://stackoverflow.com/questions/1633426/what-is-the-operator-in-javascript 1 What is the >>>= operator in Javascript? Josh Stodola 2009-10-27T20:23:25Z 2009-10-28T04:00:57Z <p>What does the following Javascript statement do to <code>a</code>?</p> <pre><code>a &gt;&gt;&gt;= b; </code></pre> http://stackoverflow.com/questions/1634352/what-is-the-difference-between-is-and-in-python 1 What is the difference between "is" and "==" in python? [closed] Matthew 2009-10-27T23:40:48Z 2009-10-28T00:00:25Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1504717/python-vs-is-comparing-strings-is-fails-sometimes-why">Python &lsquo;==&rsquo; vs &lsquo;is&rsquo; comparing strings, &lsquo;is&rsquo; fails sometimes, why?</a> </p> </blockquote> <p>Is</p> <pre><code>a == b </code></pre> <p>the same as</p> <pre><code>a is b </code></pre> <p>?</p> <p>If not, what is the difference?</p> <p>Edit: Why does</p> <pre><code>a = 1 a is 1 </code></pre> <p>return True, but</p> <pre><code>a = 100.5 a is 100.5 </code></pre> <p>return False?</p> http://stackoverflow.com/questions/1625557/how-can-i-pass-an-arithmetic-operator-to-a-template 3 How can I pass an arithmetic operator to a template? OldCoder 2009-10-26T15:44:49Z 2009-10-26T21:39:23Z <p>I want to somehow merge templates like these into one:</p> <pre><code>template &lt;class Result, class T1, class T2&gt; class StupidAdd { public: T1 _a; T2 _b; StupidAdd(T1 a, T2 b):_a(a),_b(b) {} Result operator()() { return _a+_b; } }; template &lt;class Result, class T1, class T2&gt; class StupidSub { public: T1 _a; T2 _b; StupidSub(T1 a, T2 b):_a(a),_b(b) {} Result operator()() { return _a-_b; } }; </code></pre> <p>(followed by the same code for Mul, Div, etc) where all the code is the same, except for the actual "+", "-" (and "StupidAdd", "StupidSub", etc).</p> <p>These Stupid "functors" are then used by another template. How can I avoid the repetition, WITHOUT the preprocessor? (The reason I got into templates was to avoid the preprocessor) </p> <p>That is, how can I pass arithmetic operators into a template?</p>