Jump to content

Comma operator

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 201.235.108.29 (talk) at 19:18, 14 February 2008. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In the C, C++, and other related programming languages, the comma operator (represented by the token ,) is a binary operator that evaluates its first operand and discards the result, it then evaluates the second operand and returns this value (and type). The comma operator has the lowest precedence of any C operator, and acts as a sequence point.

The use of the comma token as an operator is distinct from its use in function calls and definitions, variable declarations, enum declarations, and similar constructs, where it acts as a separator.

Because the comma operator discards its first operand, it is generally only useful where the first operand has desirable side effects, such as in the initialiser or increment statement of a for loop. For example, the following terse linked list cycle detection algorithm (a version of Floyd's "tortoise and hare" algorithm):

bool loops(List *list)
{
    List *l1, *l2;
    for (l1 = l2 = list; l2 && (l2 = l2->next); l1 = l1->next, l2 = l2->next)
        if (l1 == l2)
            return true;
    return false;
}