163
votes
14answers
7k 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()
{
int x = …
26
votes
9answers
2k views
What does the code if ( blah(), 5) {} do?
What does the following code do in C/C++?
if ( blah(), 5) {
//do something
}
25
votes
7answers
4k views
Absolute Beginner’s Guide to Bit Shifting?
I've been attempting to learn C in my spare time, and other languages (C#, Java, etc.) have the same concept (and often the same operators) ...
What I'm wondering is, at a core level, what does …
20
votes
18answers
2k views
x=x+1 vs. x +=1
I'm under the impression that these two commands result in the same end, namely incrementing X by 1 but that the latter is probably more efficient.
If this is not correct, please explain the diff.
…
19
votes
9answers
2k views
Why don’t C++ compilers define operator== and operator!= ?
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':
A default (empty) constructor
A copy …
17
votes
3answers
796 views
What’s the deal with all the different Perl 6 equality operators? (==, ===, eq, eqv, ~~, =:=, …)
Perl 6 seems to have an explosion of equality operators. What is =:=? What's the difference between "leg" and "cmp"? Or "eqv" and ===?
Does anyone have a good summary?
14
votes
6answers
494 views
php == vs === operator
What is the difference between == and === in php. I am unsure when to use both.
Updated note: So that it shows up in StackOverflow search, the difference between == and === is the same as the …
13
votes
8answers
706 views
In Python, what is the difference between ‘/’ and ‘//’ when used for division?
Is there a benefit to using one over the other? They both seem to return the same results.
>>> 6/3
2
>>> 6//3
2
13
votes
5answers
995 views
How do the equality (==) and identity (===) comparison operators differ?
Can you explain the difference between == and ===, giving some useful examples?
12
votes
7answers
582 views
What does “!!” operator mean in javascript?
I've just walked into this code:
val.enabled = !!enable
and have no idea what does "!!" do...
I googled JavaScript operators but haven't found this one.
10
votes
4answers
333 views
Can you make custom operators in C++?
Is it possible to make a custom operator so you can do things like this?
if ("Hello, world!" contains "Hello") ...
Note: this is a separate question from "Is it a good idea to..." ;)
10
votes
6answers
371 views
Why use ++i instead of i++ in cases where the value is not used anywhere else in the statement?
I'm well aware that in C++
int someValue = i++;
array[i++] = otherValue;
has different effect compared to
int someValue = ++i;
array[++i] = otherValue;
but every once in a while I see statements …
9
votes
5answers
569 views
^ operator in java
Can anyone explain the use of ^ operator in java with some examples?Thanks
8
votes
7answers
3k views
How do I overload the square-bracket operator in C#?
DataGridView, for example, lets you do this:
DataGridView dgv = ...;
DataGridViewCell cell = dgv[1,5];
but for the life of me I can't find the documentation on the index/square-bracket operator. …
7
votes
11answers
430 views
Why a full stop, “.” and not a plus symbol, “+”, for string concatentanation in PHP?
Why did the designers of PHP decide to use a full stop / period / "." as the string
concatenation operator rather than the more usual plus symbol "+" ?
Is there any advantage to it, or any reason at …
