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を練習していて、最大でロールオーバーのある単純なカウンターを作成しようとしていましたが、何らかの理由でロールオーバーしていません。何かアドバイス?
if(count++ < max){ click(); }
に注意してくださいcount++。の現在の値に評価されcount、その後増分されます。したがって、countが3で、maxが3の場合、count++ > maxfalseを返し、次に増分しますcount。が必要なように見えます++count。これは、増分してから評価します。
count++
count
max
count++ > max
++count