The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
4answers
74 views

Using the result of compound assignment as an lvalue [duplicate]

I'm surprised that this works: double x = 3; double y = 2; (x *= 2) += y; std::cout << x << std::endl; The result is 8, which is what it looks like the programmer is trying to achieve. ...
0
votes
2answers
117 views

What is the meaning and name for “+=” in C++?

I am fairly new to C++ and I have been reading and writing some of my own code. I see these operators from time to time, if that is even the right word to use? += // Not sure what it means So my ...
17
votes
5answers
553 views

Java boolean |= operator

Recently I saw a code using this: boolean val = something(); val |= somethingElse(); Interesting part is |= (binary like) operator made on boolean primitive type. It surprised me that |= exist for ...
-4
votes
3answers
84 views

C# Compound Assignment (e.g. +=, -=, etc.) “Exceptions” [closed]

I'm reading a book on C#, and it has this to say about compound assignments (e.g. +=, -=, *=, /=, <<=, >>=): A subtle exception to this rule is with events, which we describe in Chapter 4: ...
3
votes
2answers
129 views

Are compound statements are lvalue (or rvalue) in C?

When I examined the definition of the 'container_of' macro in Linux Kernel, I saw a compound statement as a macro definition, #define container_of(ptr, type, member) ({ \ ...
3
votes
3answers
209 views

Is there a compound assignment operator for a = b <operator> a (where <operator> is not commutative)?

In a lot of languages a = a + b can be written as a += b In case of numerical operations, a + b is same as b + a, so the single compound operator suffices. Also, a = a - b can be written as a -=b . ...
3
votes
1answer
99 views

Chaining compound assignment operators in JavaScript

In C#, string s = "abc"; s += (s += s); Console.WriteLine(s); writes abcabcabc (http://ideone.com/pFNFX2). This is fine, because the C# specification explicitly says in section 7.16.2 that the ...
1
vote
3answers
99 views

MySet(20,100) = “abcd”; copy and/or assignment?

apologies if this answer should be obvious, perhaps this has a pattern name like "dopey assignment overload" and have not been searching by right topic - redirects most welcome code extracts: class ...
0
votes
2answers
808 views

Compound assignment and add operator overloading

I need help with both of my operator overloading functions presented below. I'm unsure of how I can implement this without actually using the assignment in the function definitions. Code for operator ...
2
votes
3answers
713 views

python / sets / dictionary / initialization

Can someone explain help me understand how the this bit of code works? Particularly how the myHeap assignment works. I know the freq variable is assigned as a dictionary. But what about my myHeap? is ...
0
votes
1answer
325 views

C++ Compound literal

In C i can do this: ppackage ppnull() { return (ppackage) { .type = NULL } } However, in C++ I get syntax errors. I use the GNU g++ compiler. Is there a switch to enable this?
0
votes
1answer
115 views

How does the Lua mutate assignment patch work?

I followed this page, and got an metamethod __mutate_asn. This is my test code. local mt = {} mt.__mutate_asn = function(a, b) print(a, b) return a + b end debug.setmetatable(0, mt) a = 1 b ...
2
votes
3answers
94 views

Why does _ret evaluate to true, shouldn't it evaluate to false (Bit Operator)?

class Program { private static bool _ret = true; static void Main() { _ret &= Method(); Console.WriteLine(_ret); Console.Read(); } private static bool ...
21
votes
2answers
835 views

Why are there no ||= or &&= operators?

We have equivalent assignment operators for all Logical operators, Shift operators, Additive operators and all Multiplicative operators. Why did the logical operators get left out? Is there a good ...
11
votes
3answers
344 views

Why doesn't compound assignment in Java catch overflow problems?

To my shock, it turns out that the following code will compile without even warnings: public void test() { int value = 2000000000; long increment = 1000000000; value += increment; } ...
1
vote
5answers
80 views

compounding / while loops

#include <stdio.h> int main(void) { int days, hours, mins; float a, b, c, total, temp, tempA, tempB; a = 3.56; b = 12.50; c = 9.23; total = a+b+c; days = total / 24; temp = ...
14
votes
1answer
598 views

Is i += ++i undefined behavior in C++0x?

I'm very convinced with the explanation I've found that said that i = ++i is not undefined as far as C++0x is concerned, but I'm unable to judge whether the behavior of i += ++i is well-defined or ...
3
votes
3answers
286 views

Is there a cleaner way to add “else if” to assignment conditional in Awk, etc.?

Certain languages like awk script allow for conditional assignments. For example, say you had a list file in the format: <item name, no spaces> <price as float> e.g. Grape 4.99 ...
8
votes
1answer
231 views

Auto-(un)boxing fail for compound assignment

Thanks to the implicit casting in compound assignments and increment/decrement operators, the following compiles: byte b = 0; ++b; b++; --b; b--; b += b -= b *= b /= b %= b; b <<= b >>= b ...
19
votes
2answers
2k views

Varying behavior for possible loss of precision

In Java, when you do int b = 0; b = b + 1.0; You get a possible loss of precision error. But why is it that if you do int b = 0; b += 1.0; There isn't any error?
12
votes
8answers
521 views

What does “|=” operation mean in C++?

I have the following code and I can't understand what does it mean: var1 |= var2>0 ? 1 : 2; Anyone can help me please!
18
votes
7answers
10k views

Shortcut “or-assignment” (|=) operator in Java

I have a long set of comparisons to do in Java, and I'd like to know if one or more of them come out as true. The string of comparisons was long and difficult to read, so I broke it up for ...
23
votes
4answers
2k views

Why doesn't Java have compound assignment versions of the conditional-and and conditional-or operators? (&&=, ||=)

So for binary operators on booleans, Java has &, |, ^, && and ||. Let's summarize what they do briefly here: JLS 15.22.2 Boolean Logical Operators &, ^, and | JLS 15.23 ...
99
votes
6answers
83k views

Operator precedence with Javascript Ternary operator

I cant seem to wrap my head around the first part of this code ( += ) in combination with the ternary operator. h.className += h.className ? ' error' : 'error' The way i think this code works is as ...