(int)(rows ⼀ rowsCount) - 1 什么意思?

2024年11月11日 12:52
有3个网友回答
网友(1):

(int)(rows / rowsCount):取(rows / rowsCount)商的整数部分,再减一。

网友(2):

...这你都不知道?
(int)(rows / rowsCount)将rows / rowsCount得到的商转为整数,再将该整数减1.

网友(3):

取整减一

一般用作数组下标,因为C中下标是从0开始的。