gpt4 book ai didi

java - 如何返回接口(interface)对象?

转载 作者:行者123 更新时间:2023-12-01 18:36:39 29 4
gpt4 key购买 nike

我有接口(interface) Transport 和 2 个类 Cars 和 Motos。我正在将有关某些汽车或摩托车的所有详细信息写入文件。我怎样才能写一个方法公共(public)静态传输 inputTransport(InputStream in)?我的文件中没有任何有关类(class)类型(汽车或摩托车)的信息。我应该将此信息写入文件中,然后创建新的汽车或摩托并将其返回,还是我可以写其他内容?

public interface Transport {
public void addModel(String model, double price) throws DuplicateModelNameException;
public void deleteModel(String model) throws NoSuchModelNameException;
public void changeModel(String model, String new_model) throws NoSuchModelNameException,DuplicateModelNameException;
public void changePrice(String model, double new_price) throws NoSuchModelNameException;
public void changeType(String type);
public String getType();
public int getNumber();
public String getPrice(String model) throws NoSuchModelNameException;
public String[] getAllModels();
public double[] getAllPrices();
}
class Cars implements Transport{

private String type;
private Models[] cars;
private int number;

Cars(String type, int number){
this.type = type;
this.number = number;
cars = new Models[number];
for (int i = 0; i < number; i++){
cars[i] = new Models("default", Double.NaN);
}
} ...

class Motos implements Transport {
private int count = 0;
private String type;

Motos(String type){
this.type = type;
}...

最佳答案

您可以使用 ObjectOutputStream 并将对象保存到文件中,然后使用 ObjectInputStream 导入对象,此 InputStream 现在将是您的对象的确切类。

我编写了一个小示例程序,应该可以帮助您入门。

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;

public class Main {
public static void main(String[] args) throws FileNotFoundException, IOException, ClassNotFoundException {
A a = new A();
B b = new B();

save(a);

C c = load();

System.out.println(c.getClass()); // prints "A"

if (c instanceof A) {
System.out.println("is of class A");
A loaded = (A) c;// you can now use this object
System.out.println(a.someMethod());
} else if (c instanceof B) {
System.out.println("is of class B");
B loaded = (B) c;
} else {
System.out.println("should not occur");
}
}

private static C load() throws IOException, FileNotFoundException, ClassNotFoundException {
ObjectInputStream in = new ObjectInputStream(new FileInputStream("f.txt"));
C s = (C) in.readObject();
in.close();
return s;
}

private static void save(C c) throws FileNotFoundException, IOException {
final FileOutputStream fout = new FileOutputStream("f.txt");
final ObjectOutputStream out = new ObjectOutputStream(fout);
out.writeObject(c);
out.flush();
out.close();
}

}

class A implements C {
// serialVersion is the version of the clas, so if you save the object with
// serialVersion 1 and then change something, change this version to two, so you
// get an error if you are trying to load "obsolete" objects
private static final long serialVersionUID = 1L;

@Override
public String getName() {
return "A";
}

public String someMethod() {
return "someMethod";
}
}

class B implements C {
private static final long serialVersionUID = 1L;

@Override
public String getName() {
return "B";
}

public String someOtherMethod() {
return "someOtherMethod";
}
}

interface C extends Serializable { //Objects saved to a File have to be Serializable
String getName();
}

关于java - 如何返回接口(interface)对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60024577/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com