Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java 中,如果我这样做x = x <<< 2,一切正常,但如果我这样做x =<<< 2,它不会。
x = x <<< 2
x =<<< 2
=<<<Java中没有运算符吗?
=<<<
如果是这样,那为什么会有=<<运营商?
=<<
谢谢你。
你之前这么说
如果我做 x = x <<< 2,一切正常
你确定吗?<<<不是Java 中的运算符。
<<<
有>>、<<和>>>。还有相应的>>=, <<=, 和>>>=运算符。
>>
<<
>>>
>>=
<<=
>>>=
`b >>>= 4` works fine.
<<< 不是有效的运算符,您只能向右移动而没有符号。