About 62,800 results
Open links in new tab
  1. Java Operators : |= bitwise OR and assign example [duplicate]

    Oct 22, 2013 · It calculates the bitwise OR of the two operands, and assigns the result to the left operand. To explain your example code: matches |= field.contains(search); I presume …

    Missing:
    • word:(java ·
    • word:(java example)
  2. Java Operators - GeeksforGeeks

    Nov 12, 2025 · Java operators are special symbols that perform operations on variables or values. These operators are essential in programming as they allow you to manipulate data …

    Missing:
    • word:(java ·
    • word:(java example)
  3. Java Examples - Programiz

    The best way to learn Java programming is by practicing examples. The page contains examples on basic concepts of Java. You are advised to take the references from these examples and …

  4. Java Bitwise OR Assignment (|=) Operator - Tutorial Kart

    In Java, Bitwise OR Assignment Operator is used to compute the Bitwise OR operation of left and right operands, and assign the result back to left operand. In this tutorial, we will learn how to …

    Missing:
    • word:(java ·
    • word:(java example)
  5. Understanding Bitwise OR and Assignment Operator in Java

    Explore the usage of the |= operator in Java with clear examples, common mistakes, and debugging tips.

    Missing:
    • word:(java ·
    • word:(java example)
  6. Java Tutorial - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

    Missing:
    • word:(java example)
    Must include:
  7. Java Bitwise OR and assignment operator - AlphaCodingSkills

    Java - Bitwise OR and assignment operator The Bitwise OR and assignment operator (|=) assigns the first operand a value equal to the result of Bitwise OR operation of two operands.

    Missing:
    • word:(java ·
    • word:(java example)
  8. Bitwise Operators in Java - GeeksforGeeks

    Jan 16, 2026 · Bitwise operators in Java are used to perform operations directly on the binary representation (bits) of integer values. Instead of working on whole numbers, these operators …

    Missing:
    • word:(java ·
    • word:(java example)
  9. BitWise Operators in Java with Example - Javastudypoint

    Operators are special symbols that perform specific operations on one, two, or three operands, and then return a result. There are different types of operators are available in java which are …

    Missing:
    • word:(java ·
    • word:(java example)
  10. Bitwise Shift and Assignment Operators in Java with Examples

    Let’s now look at how bitwise operations are used in a program. The following example also shows the use of the Integer.toBinaryString() method, which converts a decimal value to …

    Missing:
    • word:(java ·
    • word:(java example)