約 49,200 件の結果
リンクを新しいタブで開く
  1. Decrement (--) - JavaScript | MDN

    2025年7月8日 · The -- operator is overloaded for two types of operands: number and BigInt. It first coerces the operand to a numeric value and tests the type of it. It performs BigInt decrement if the …

  2. Increment and decrement operators - Wikipedia

    In languages syntactically derived from B (including C and its various derivatives), the increment operator is written as ++ and the decrement operator is written as --.

  3. Increment and Decrement Operators in C - GeeksforGeeks

    2025年5月21日 · The increment ( ++ ) and decrement ( -- ) operators in C are unary operators for incrementing and decrementing the numeric values by 1, respectively. They are one of the most …

  4. JavaScript Decrement Operator - W3Schools

    Description The decrement operator (--) subtracts 1 to the operand. If it is placed after the operand, it returns the value before the decrement. If it is placed before the operand, it returns the value after the …

  5. Increment and Decrement Operators – Programming Fundamentals

    Increment and decrement operators are unary operators that add or subtract one from their operand, respectively. They are commonly implemented in imperative programming languages.

  6. 6.4 — Increment/decrement operators, and side effects

    2024年12月29日 · The prefix increment/decrement operators are very straightforward. First, the operand is incremented or decremented, and then expression evaluates to the value of the operand.

  7. Arithmetic operators - C# reference | Microsoft Learn

    2025年11月18日 · Learn about C# operators that perform multiplication, division, remainder, addition, and subtraction operations with numeric types.

  8. C Programming: Increment and Decrement Operators - w3resource

    2024年9月21日 · Learn how to use C's increment (++) and decrement (--) operators in both prefix and postfix forms, with practical examples and detailed explanations.

  9. Increment and Decrement Operators in Programming

    2025年7月23日 · Decrement operators are used in programming languages to decrease the value of a variable by one. Similar to increment operators, there are two types of decrement operators: the prefix …

  10. Increment ++ and Decrement -- Operator as Prefix and Postfix

    In this article, you will learn about the increment operator ++ and the decrement operator -- in detail with the help of examples in Java, C, C++ and JavaScript.