150
votes
15answers
6k views
What is the name of this operator: “-->”?
After reading this post on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both VS 2008 and G++ 4.4. The code:
#include <stdio.h>
int main …
5
votes
6answers
333 views
Is there an Non-Short circuited logical “and” in C++?
tl;dr: Is there a non-short circuit logical AND in C++ (similar to &&)?
I've got 2 functions that I want to call, and use the return values to figure out the return value …
7
votes
9answers
187 views
What’s the difference between ++$i and $i++ in PHP?
What's the difference between ++$i and $i++ in PHP?
0
votes
2answers
131 views
What does the ^ operator do in C++ (when declaring a variable)? [closed]
Possible Duplicate:
What does the caret mean in C++/CLI?
For example if I declare a variable like this:
vector<int>^ myVec;
what does the ^ operator do?
1
vote
5answers
104 views
Bitwise Operation and Usage
x = 1 # 0001
x << 2 # Shift left 2 bits: 0100
# Result: 4
x | 2 # Bitwise OR: 0011
# Result: 3
x & 1 # Bitwise AND: 0001
# Result: 1
I can …
2
votes
7answers
48 views
Javascript String Assignment Operators
How come I can use += on a string, but I cannot use -= on it?
For example...
var test = "Test";
var arr = "⇔"
test += arr;
alert(test); // Shows "Test⇔"
te …
1
vote
1answer
63 views
PHP Comparison Operators and Data Types
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":
First Operand …
2
votes
11answers
205 views
VB to C# Functions
Which are the equivalent of the following operators from VB.Net to C#?
UBound()
LBound()
IsNothing()
Chr()
Len()
UCase()
LCase()
Left()
Right()
RTrim()
LTrim()
Trim()
Mid()
Repl …
0
votes
5answers
113 views
SQL “*=” operator [closed]
Possible Duplicate:
Transact-SQL shorthand join syntax?
I ran across a T-SQL script that does something like this in the where clause:
...
where o.obj_code *= c.prv_code
…
3
votes
6answers
167 views
Unary operator result
In K&R ANSI C book, section A.7.4.5 (Unary Minus Operator) it is stated:
... The negative of an unsigned quantity is computed by subtracting the promoted value from the lar …
2
votes
6answers
210 views
Which C++ logical operators do you use: and, or, not and the ilk or C style operators? why?
leisure/curiosity question as implied in the title.
I personally prefer the new operators as to make code more readable in my opinion.
Which ones do use yourself? What is your r …
0
votes
2answers
31 views
CompilerServices.Operators equivalent on C#
Hello, I want to know if exists namespace available for C#, cause this class come from :
Microsoft.VisualBasic.CompilerServices
cause I want to do something like this, but in C# …
1
vote
2answers
145 views
What is the difference between ~ and ! operator?
Please let me know the difference between ~ and ! operator in java.
3
votes
4answers
71 views
Can I use operators as function callback in PHP?
Suppose I've the following function:
function mul()
{
return array_reduce(func_get_args(), '*');
}
Is is possible to use the * operator as a callback function? Is there any o …
1
vote
5answers
237 views
What does ** operator do in Python?
What does this mean in python:
sock.recvfrom(2**16)
I know what sock is and I get the jest of recvfrom function, but what the hell is 2**16?
