There are no bitwise operators for bytes and short...
# getting-started
d
There are no bitwise operators for bytes and shorts (just ints and longs) because the JVM only has operators for ints and longs. Java just silently casts for you if you use a byte or short.
👍🏽 1