Android SDK 中的 Rect 和 RectF
Android SDK 中的 Rect 和 RectF 有什么区别?
What is the difference between Rect and RectF in the Android SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Android SDK 中的 Rect 和 RectF 有什么区别?
What is the difference between Rect and RectF in the Android SDK?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用
Rect
,您可以使用整数定义其边缘,并使用RectF
,它们被定义为浮点数。更仔细地观察它们,我实际上发现了一些差异。我只会列出一种实现与另一种实现相比更多的内容。
矩形
RectF
所以显然存在一些差异。
Using
Rect
you define its edges using integers and usingRectF
they are defined as floats.Looking at them more carefully I have spotted a few differences actually. I will only list what one implementation has more compared to the other one.
Rect
RectF
So apparently there are some differences.
矩形是最终的,矩形可以扩展
Rect is final, RectF can be extended