From 8fd9d9684e61cb34be7aa0208443538c0411bb70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=5Bgithub=5D=E2=80=9D?= Date: Fri, 19 Dec 2025 22:07:34 +0530 Subject: [PATCH] Update and clarify Java bitwise operators --- content/java/concepts/operators/operators.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content/java/concepts/operators/operators.md b/content/java/concepts/operators/operators.md index a0838d3ac0e..84de7ba75b6 100644 --- a/content/java/concepts/operators/operators.md +++ b/content/java/concepts/operators/operators.md @@ -78,10 +78,9 @@ Bitwise operators are used to manipulate individual bits of a number. - `|` Bitwise OR - `^` Bitwise XOR - `~` Bitwise complement -- `<<` Signed right shift operator -- `>>` Signed left shift operator +- `<<` Left shift operator +- `>>` Signed right shift operator - `>>>` Unsigned right shift operator -- `<<<` Unsigned left shift operator They can only be operated on data of `int`, `char`, `byte`, `long`, and `short`.