
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Differences Between & and | Operators in Java
| is a bitwise operator and compares each operands bitwise.
It is a binary OR Operator and copies a bit to the result it exists in either operands.
Assume integer variable A holds 60 and variable B holds 13 then
(A | B) will give 61 which is 0011 1101.
Whereas || is a logical OR operator and operates on boolean operands. If both the operands are false, then the condition becomes false otherwise it is true. Assume boolean variable A holds true and variable B holds false then (A && B) is true.
| is to be used during bitwise operations and || is useful during logical operations.
Advertisements