The comma-operator tag has no wiki summary.
23
votes
6answers
981 views
got an unexpected answer from the x?y:z expression
Here is a simple C++ snippet:
int x1 = 10, x2=20, y1=132, y2=12, minx, miny, maxx, maxy;
x1<=x2 ? minx=x1,maxx=x2 : minx=x2,maxx=x1;
y1<=y2 ? miny=y1,maxy=y2 : miny=y2,maxy=y1;
...
16
votes
1answer
190 views
Is the comma operator allowed in a constant-expression in C++11?
In the process of answering this question on SO for C++11, I realized that in C++03 (as well as in C) the use of the comma operator is explicitly forbidden in a constant-expression.
Paragraph 5.19/1 ...
5
votes
2answers
176 views
Is something like “for(i=1;i<=10;printf(”%d\n";i),i++) valid and UB-free in C?
Are the following two code blocks exactly the same and achieve the same thing?It displays the same thing when I run the program,but I would appreciate some rigorous explanation.
for(i=1;i<=10;i++)
...
6
votes
3answers
114 views
deleting multiple pointers in one line. c++ [duplicate]
Does this delete all the pointers or does this just delete the first pointer p1?
delete p1,p2,p3,p4,p5;
0
votes
5answers
131 views
Smart pointer test in a while loop: use the comma operator?
I recently saw code like this:
// 3rd Party API: (paraphrased)
void APIResetIterator(int ID); // reset iterator for call to next()
Mogrifier* APINext(int ID); // User must delete pointer returned
...
2
votes
4answers
82 views
Proper use of a comma in javascript ternary operator
Rather than use an if else statement, I'm trying to use the ternary operator but have a syntax error somewhere in my statement.
Can someone tell me where I am going wrong?
Statement is:
...
7
votes
1answer
130 views
Does the comma operator have to be left-associative?
According to this precedence table, the comma operator is left-associative. That is, a, b, c is parsed as (a, b), c. Is that a necessity? Wouldn't a, (b, c) have the exact same behavior?
5
votes
5answers
120 views
Comma and assignment operators in C
I have the following:
int a = 1, b = 2, c = 3, d = 4;
a = b, c = d;
printf("%d, %d, %d, %d", a, b, c, d);
The output is:
2, 2, 4, 4
How does the comma operator work with assignment operators? ...
3
votes
2answers
163 views
Why does double x = 0,1; not compile?
double x = 0,1;
doesn't compile (tries on on MSVC9.0). The error is
C2059 syntax error : 'constant'
I do realize that there's a comma there instead of a point, but shouldn't the line above be ...
3
votes
2answers
207 views
How is the comma operator being used here? [duplicate]
Possible Duplicate:
C++ Comma Operator
Uses of C comma operator
I am not new to C++, but this is the first time I see the following code:
int a=0;
int b=(a=2,a+1);
That is C++ code. ...
0
votes
1answer
621 views
Java - comma operator outside for loop declaration
I know I can use the comma operator like this
for (int i = 1, j = 15; j>10; i++, j--) {
// do something neat
}
but some articles seem to suggest that the comma operator can be used outside ...
11
votes
2answers
235 views
Move constructor suppressed by comma operator
This program:
#include <iostream>
struct T {
T() {}
T(const T &) { std::cout << "copy constructor "; }
T(T &&) { std::cout << "move constructor "; }
};
int ...
0
votes
1answer
86 views
C: Creating and returning a variable in a macro
I'm a bit confused as to why this C macro fails to compile:
#define LUA_GET_FIELD(Lua, idx, name, type) (\
lua_getfield((Lua), (idx), (name)), \
typeof(lua_to##type) __result = ...
13
votes
3answers
3k views
Javascript “tuple” notation: what is its point?
At wtfjs, I found that the following is legal javascript.
",,," == Array((null,'cool',false,NaN,4)); // true
The argument (null,'cool',false,NaN,4) looks like a tuple to me, but javascript does not ...
26
votes
1answer
360 views
Should the implementation guard itself against comma overloading?
For example uninitialized_copy is defined in the standard as:
Effects:
for (; first != last; ++result, ++first)
::new (static_cast<void*>(&*result))
typename ...
1
vote
5answers
145 views
Why does the following code not produce a compilation error?
I am using VS2005 compiler and I am expecting following code to give compilation error.
int a=1, b= 2, c=3;
a = (b,c);
value of a after assignment is 3. As per my understanding it should give ...
1
vote
4answers
299 views
Why is this double initialization with a comma illegal?
I have three code snippets. This one:
1,7; //yes, that's all the code
compiles okay. This one:
double d = (1, 7);
also compiles okay. Yet this one:
double d = 1, 7;
fails to compile. ...
12
votes
1answer
388 views
Does overloading the comma operator *really* affect the order of evaluation of its operands?
The comma operator guarantees left-to-right evaluation order.
[n3290: 5.18/1]: The comma operator groups left-to-right.
expression:
assignment-expression
expression , assignment-expression
...
7
votes
7answers
848 views
Suggest a book for tricky questions in C example unusual if condition [duplicate]
Possible Duplicate:
What does the ',' operator do in C?
Ok I had an interview today and they asked me what should be the output of the following code
#include<stdio.h>
int ...
29
votes
6answers
1k views
sizeof taking two arguments
In C.1.3 of the C++ IS (2003. It's in the C++11 IS, too), the standard points out a difference between ISO C and C++; namely, for
char arr[100];
sizeof(0, arr) returns sizeof(char*) in C, but 100 ...
7
votes
2answers
1k views
Why does this code produce a warning referring to the comma operator?
When answering this question, I came across this code...
#include <iostream>
int main()
{
int const income = 0;
std::cout << "I'm sorry your income is: " < income; // this ...
2
votes
2answers
91 views
Why this code compiles in VS? (“extra” comma)
The line below is inside a for loop. If the method fails, it needs to break. CATEGORY_1 is an enum. I added this enum as a new parameter to AddToList method with a default value. If you see closely ...
4
votes
3answers
265 views
Order of execution with comma operator in Perl
Forgive the poor readability of my examples, but this code is for code-golfing, not for production code.
Consider the following script:
print'+'x$z,($z=1,$w)?'':$_ for 1..3;
This prints, as I ...
10
votes
3answers
905 views
how to use the comma operator in a function call
I've just read this
and think I'm misunderstanding it, because I expected:
alert(1, 2);
to give me 2, but instead it gives me 1. What's going on?
3
votes
4answers
322 views
Does cout need to be terminated with a semicolon?
I am reading Bjarne Stroustrup's Programming : Principles and Practice Using C++
In the drill section for Chapter 2 it talks about various ways to look at typing errors when compiling the hello_world ...
2
votes
2answers
816 views
Commas in for loop
Why is the following line producing errors?
for(int i = 0, int pos = 0, int next_pos = 0; i < 3; i++, pos = next_pos + 1) {
// …
}
error: expected unqualified-id before ‘int’
error: ‘pos’ was ...
6
votes
5answers
404 views
When all does comma operator not act as a comma operator?
If you see this code,
class A{
public:
A(int a):var(a){}
int var;
};
int f(A obj) {
return obj.var;
}
int main() {
//std::cout<<f(23); // output: 23
...
34
votes
14answers
6k views
C++ — return x,y; What is the point?
I have been programming in C and C++ for a few years and now I'm just now taking a college course in it and our book had a function like this for an example:
int foo(){
int x=0;
int y=20;
...
1
vote
2answers
386 views
C++ overide global operator comma gives error
the second function gives error C2803 http://msdn.microsoft.com/en-us/library/zy7kx46x%28VS.80%29.aspx : 'operator ,' must have at least one formal parameter of class type. any clue?
...
7
votes
4answers
2k views
C++ overloading operator comma for variadic arguments
is it possible to construct variadic arguments for function by overloading operator comma of the argument? i want to see an example how to do so.., maybe something like this:
template <typename ...
6
votes
5answers
244 views
What does this dynamic allocation do?
Today, I found out that you can write such code in C++ and compile it:
int* ptr = new int(5, 6);
What is the purpose of this? I know of course the dynamic new int(5) thing, but here i'm lost. Any ...
5
votes
1answer
691 views
Why doesn't my overloaded comma operator get called?
I'm trying to overload the comma operator with a non-friend non-member function like this:
#include <iostream>
using std::cout;
using std::endl;
class comma_op
{
int val;
public:
void ...
14
votes
4answers
1k views
C comma operator
Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression?
For example,
int a = (10,20) ;
when given in global scope yields an error ...
7
votes
3answers
532 views
Performance difference in for loop condition?
I have a simple question that I am posing mostly for my curiousity.
What are the differences between these two lines of code? (in C++)
for(int i = 0; i < N, N > 0; i++)
for(int i = 0; i < ...
9
votes
1answer
485 views
What's up with static_cast with multiple arguments?
Can anyone tell me what this cast has for effect (besides setting happyNumber to 1337), if any at all, and if it has no other effect, how come I can write code like this??? Is this a compiler bug, or ...
49
votes
7answers
11k views
How does the Comma Operator work
How does the comma operator work in C++?
For instance, if I do:
a = b, c;
Does a end up equaling b or c?
(Yes, I know this is easy to test - just documenting on here for someone to find the ...
30
votes
7answers
2k views



