this.setBounds(300,300,400,300);这句话什么意思呢? 2009-02-28 12:21 happyer10 | 分类:JAVA相关 | 浏览2390次 分享到: 2009-02-28 13:23 提问者采纳 设置窗体的长宽各为:400 300 让其显示在距屏幕左上方坐标(300,300)处 //它们的计量单位是像素 这句话等效于: this.setLocation(300, 300) this.setSize(400, 300);