public void actionPerformed(ActionEvent e) { int spaceNumber = Integer.parseInt(TxtspaceNumber.getText().trim()); String ownerName = TxtownerName.getText().trim(); String gender = Txtgender.getText().trim(); int age = Integer.parseInt(Txtage.getText().trim()); String licensePlate = TxtlicensePlate.getText().trim(); // TODO Auto-generated method stub JOptionPane.showMessageDialog(null, "修改成功!"); Park park = new Park(spaceNumber,ownerName,gender,age,licensePlate); parkimpl.UpdatePark(spaceNumber, park); Reset();java如何在同个包内的另一个文件中引用这段代码
时间: 2023-02-06 18:08:51 浏览: 96
public void actionPerformed(ActionEvent e)
在另一个文件中引用这段代码,你需要先导入这个文件所在的包,然后使用类名调用这段代码所在的方法。
例如,假设这段代码位于名为 "MyClass" 的类中,并且这个类位于名为 "com.example.mypackage" 的包中,那么在另一个文件中引用这段代码的方法如下:
```
import com.example.mypackage.MyClass;
// ...
MyClass myClass = new MyClass();
myClass.actionPerformed(e);
```
在这个例子中,我们首先导入了 "MyClass" 所在的包,然后使用类名 "MyClass" 创建了一个 "MyClass" 类的实例,最后调用了这个实例的 "actionPerformed" 方法。
注意,在调用 "actionPerformed" 方法时,你需要传入一个 "ActionEvent" 类型的参数 "e"。
阅读全文