Why ruby modulo is different from java/other lang ?

前端 未结 3 1304
天涯浪人
天涯浪人 2021-01-18 09:42

i am basically coming from java background and struggling to understand the modulo operation in Ruby.

(5 % 3)     
(-5 % 3)    
(5 % -3)    
(-5 % -3) 
         


        
3条回答
  •  野的像风
    2021-01-18 10:39

    The sign of the remainder changes from language to language. The "right" way to do it is up for debate...

    Ruby implements both ways. The remainder function has the same behavior as Java, while modulo and the % operator use the other algorithm.

    Wikipedia has a list of programming languages and how they implement modulo.

提交回复
热议问题