如何验证只显示小于 JFrame 的几何形状
我可以编写一个程序来输入一系列几何图形的值,以便在 JFrame 中显示。 它发生了所有的数字显示他们想在 JFrame 中看到,但我必须验证这些数字在我看来完全在 JFrame 中,而不是当坐标非常大时的情况。 我在网上查了一下,什么也没找到。 我想到了“如果”但从未完成,因为每个数字和广播我都要输入一次验证。 我想知道java中是否有一个保留字可以让我只显示小于JFrame的数据。
感谢您的回复。
I can make a program to enter a series of values of geometric figures to show me in a JFrame.
It happens all the figures showing they want to see in the JFrame, but I have to validate that these figures appear to me entirely in the JFrame is not the case when the coordinates are very large.
I was looking online and found nothing.
I thought that "if" but never finished, because each number and the radio that I have to enter a validation.
I wondered if there was a reserved word in java that allows me to display only the data that is smaller than the JFrame.
Thank you for your response.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Shape 类。例如
getBounds()
和contains(double x, double y)
There are many methods you can use in the Shape class. E.g.
getBounds()
andcontains(double x, double y)