Tagged Questions

Operators are symbols that occur in nearly all programming and coding languages, for performing calculations and comparisons on numbers and occasionally strings.

learn more… | top users | synonyms

915
votes
24answers
84k views

What is the name of this operator: “-->”?

After reading "Hidden Features and Dark Corners of C++/STL" on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both Visual Studio 2008 and G++ 4.4. The code: ...
251
votes
20answers
22k views

JavaScript === vs == : Does it matter which “equal” operator I use?

I'm using JSLint to go through some horrific JavaScript at work and it's returning a huge number of suggestions to replace == with === when doing things like comparing idSele_UNVEHtype.value.length == ...
232
votes
26answers
9k views

Why does this go into an infinite loop?

I'm a teacher, and yesterday a student wrote the following code: public class Tests { public static void main(String[] args) throws Exception { int x = 0; while(x<3) { ...
224
votes
3answers
6k views

What does the C ??!??! operator do?!

I saw a line of C that looked like this: !ErrorHasOccured() ??!??! HandleError(); It compiled correctly and seems to run ok. It seems to like it's checking if an error has occurred, and if it has, ...
182
votes
12answers
4k views

Why does (0 < 5 < 3) return true?

This may be a stupid question but I was playing around in jsfiddle.net and I'm curious as to why this returns true? if(0 < 5 < 3) { alert("True"); } So does this - if(0 < 5 < 2) { ...
149
votes
8answers
36k views

Python Ternary Operator

I was under the impression that Python had a ternary operator... But then I did some research, Not enough to find out for sure though Thought I'd ask the professionals ;)
120
votes
5answers
13k views

Operator overloading

What are the basic rules and idioms for operator overloading in C++? Note: The answers were given in a specific order, but since many users sort answers according to votes, rather than the time they ...
120
votes
7answers
28k 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 ...
88
votes
14answers
4k views

Why && and not &

Why is && preferable to & and || preferable to |? I asked someone who's been programming for years and his explanation was: For example, in if (bool1 && bool2 && bool3) ...
81
votes
13answers
5k views

What is x after “x = x++”? [closed]

Possible Duplicate: Is there a difference between x++ and ++x in java? Why does this go into an infinite loop? What happens (behind the curtains) when this is executed? int x = 7; x = ...
78
votes
2answers
3k views

What does && mean in void *p = &&abc;

I came across a piece of code void *p = &&abc;. What is the significance of && here? I know about rvalue references but I think && used in this context is different. What does ...
73
votes
14answers
8k views

What is the !! (not not) operator in JavaScript?

I've seen code that seems to use an operator I don't recognize, in the form of two exclamation points, like so: !!. Can someone please tell me what this operator does?
61
votes
8answers
2k views

Why does >= return false when == returns true for null values?

I have two variables of type int? (or Nullable<int> if you will). I wanted to do a greater-than-or-equal (>=) comparison on the two variables but as it turns out, this returns false if both ...
61
votes
5answers
5k views

null coalescing operator for javascript?

Is there a null coalescing operator in Javascript? For example, in C#, I can do this: String someString = null; var whatIWant = someString ?? "Cookies!"; The best approximation I can figure out ...
57
votes
4answers
45k views

Python: Behaviour of increment and decrement operators

I am a newbie to Python. I notice that a pre-increment/decrement operator can be applied on a variable (like ++count). It compiles, but it does not actually change the value of the variable! What is ...
54
votes
6answers
2k views

VB.NET vs C# integer division

Anyone care to explain why these two pieces of code exhibit different results? VB.NET v4.0 Dim p As Integer = 16 Dim i As Integer = 10 Dim y As Integer = p / i //Result: 2 C# v4.0 int p = 16; int ...
47
votes
11answers
9k 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 ...
46
votes
6answers
24k views

What is the instanceof operator in JavaScript?

What is the instanceof operator in JavaScript?
46
votes
9answers
14k views

Can't operator == be applied to generic types in C#?

According to the documentation of the == operator in MSDN, For predefined value types, the equality operator (==) returns true if the values of its operands are equal, false otherwise. For ...
43
votes
3answers
2k views

If x is list, why does x += “ha” work, while x = x + “ha” throw an exception?

From what little I know, + op for lists only requires the 2nd operand to be iterable, which "ha" clearly is. Thanks in advance. In Code: >>> x = [] >>> x += "ha" >>> x ...
42
votes
5answers
1k views

How do you declare x and y so that x+=y gives a compilation error and x=x+y not?

I ran into this question in an interview and couldn't come up with a solution. I know the vice versa can be done as shown in What does the "+=" operator do in Java? So the question was ...
42
votes
7answers
17k 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. ...
39
votes
8answers
1k views

Why is === faster than == in PHP?

Why is === faster than == in PHP?
34
votes
6answers
2k views

What does =+ mean in C?

I came across =+ as opposed to the standard += today in some C code; I'm not quite sure what's going on here. I also couldn't find it in the documentation.
34
votes
3answers
357 views

Is this code behavior defined?

What does the following code print to the console? map<int,int> m; m[0] = m.size(); printf("%d", m[0]); Possible answers: The behavior of the code is not defined since it is not defined ...
33
votes
2answers
4k views

Haskell: How is <*> pronounced?

Sorry, I don't really know my math, so I'm curious how to pronounce the functions in the Applicative typeclass: (<*>) :: f (a -> b) -> f a -> f b (*>) :: f a -> f b -> f b ...
33
votes
5answers
8k views

How do the equality (== double equals) and identity (=== triple equals) comparison operators differ?

Can you explain the difference between == and ===, giving some useful examples?
31
votes
9answers
1k views

Is there an “opposite” to the null coalescing operator? (…in any language?)

null coalescing translates roughly to return x, unless it is null, in which case return y I often need return null if x is null, otherwise return x.y I can use return x == null ? null : x.y; Not ...
31
votes
8answers
2k views

What does the code if ( blah(), 5) {} do?

What does the following code do in C/C++? if ( blah(), 5) { //do something }
29
votes
6answers
3k views

What is Ruby's double-colon (::) all about?

I'd probably be able to answer this for myself if "::" wasn't so hard to Google. Didn't see anything on SO so thought I'd try my luck. What is this double-colon :: all about? I see it everywhere in ...
29
votes
4answers
6k views

Is there a VB.NET equivalent for C#'s ?? operator?

Is there a VB.NET equivalent for C#'s ?? operator?
29
votes
19answers
11k views

Suppress error with @ operator in PHP [closed]

In your opinion, is it ever valid to use the @ operator to suppress an error/warning in PHP whereas you may be handling the error? If so, in what circumstances would you use this? Code examples are ...
28
votes
10answers
1k views

Are +=, |=, &= etc atomic?

Are the "modify" operators like +=, |=, &= etc atomic? I know ++ is atomic (if you perform x++; in two different threads "simultaneously", you will always end up with x increased by 2, as opposed ...
28
votes
5answers
890 views

int x = 10; x += x--; in .Net - Why?

int x = 10; x += x--; In C#/.Net, why does it equal what it equals? (I'm purposely leaving the answer out so you can guess and see if you're right)
28
votes
10answers
7k views

What is the diffference between the | and || or operators?

I have always used || (two pipes) in OR expressions, both in C# and PHP. Occasonally I see a single pipe used: | What is the difference between those two usages? Are there any caveats when using one ...
27
votes
7answers
843 views

What does “<<” mean in C#?

Basically the questions in the title. I'm looking at the MVC 2 source code: [Flags] public enum HttpVerbs { Get = 1 << 0, Post = 1 << 1, Put = 1 << 2, Delete = 1 ...
27
votes
9answers
1k views

What does the operator “<<” mean in C#?

I was doing some basic audio programming in C# using the NAudio package and I came across the following expression and I have no idea what it means, as i've never seen the << operator being used ...
27
votes
2answers
3k views

Ruby spaceship operator <=>

What is the Ruby spaceship operator? Is the operator implemented by any other languages?
25
votes
5answers
599 views

Difference between <> and != in PHP

Simple question, in PHP, is there anything difference between != and <> operators? In the manual is states: $a != $b Not equal TRUE if $a is not equal to $b. $a <> $b Not equal ...
25
votes
1answer
1k views

Logic differences in C and Java

Compile and run this code in C #include <stdio.h> int main() { int a[] = {10, 20, 30, 40, 50}; int index = 2; int i; a[index++] = index = index + 2; for(i = 0; i <= 4; i++) ...
25
votes
3answers
3k views

What is the * operator doing to this string in Ruby

Given the Ruby code line = "first_name=mickey;last_name=mouse;country=usa" record = Hash[*line.split(/=|;/)] I understand everything in the second line apart from the * operator - what is it ...
25
votes
17answers
3k 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. ...
24
votes
6answers
781 views

Scala Punctuation (aka symbols, operators)

I'm putting up this question asked on Reddit because I think it would be useful to gather answers on Stackoverflow for future reference: I'm reading some Scala code, trying to learn the language ...
24
votes
6answers
959 views

Is Perl's flip-flop operator bugged? It has global state, how can I reset it?

I'm dismayed. OK, so this was probably the most fun Perl bug I've ever found. Even today I'm learning new stuff about Perl. Essentially, the flip-flop operator .. which returns false until the ...
24
votes
9answers
1k views

What _did_ the C operators /\ and \/ do?

Anyone can "declare" ones own operators in C.... that is if one is a C compiler guru and has the source code to the C compiler! ;-) Further questions to puzzle: How are these operations done in ...
24
votes
3answers
12k views

What is the use of @ symbol in php?

I have seen using @ in front of certain functions like following: $fileHandle = @fopen($fileName, $writeAttributes); What is the use of this symbol?
24
votes
6answers
1k 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 ...
23
votes
10answers
9k views

Is there a C# case insensitive equals operator?

I know that the following is case sensitive: if (StringA == StringB) { So is there an operator which will compare two strings in an insensitive manner?
22
votes
4answers
1k 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?
21
votes
5answers
537 views

Concatenate two string literals

I am very new to programming, and am reading Accelerated C++ by Koenig. Anyways, I am learning about strings and he writes that "the new idea is that we can use + to concatenate a string and a string ...

1 2 3 4 5 28