假设我有圆,矩形和三角类。
根据数据文件的输入,我想创建适当的对象。例如,如果shapes.dat
的第一行是C.5 0 0
,我将创建一个半径为5的Circle对象。如果下一行是R.5 3 0
,我将创建一个长度为5的Rectangle对象和宽度3。
我知道我可以使用基本的if-else逻辑,但我想知道是否有一种方法可以使用字符串作为实例化新对象的方法。类似于Python中的exec()
方法。这是描述我想要的代码片段:
Scanner file = new Scanner (new File("shapes.dat"));
String s;
Map<Character,String> dict = new HashMap<Character,String>();
dict.put('C', "Circle");
dict.put('R', "Rectangle");
dict.put('T', "Triangle");
while (file.hasNextLine())
{
s = file.nextLine().trim();
String name = dict.get(s.toCharArray()[0]);
String data = s.split(".")[1];
String code = name + " x = new " + name + "(data);";
SYS.exec(code); //???
...
}
答案 0 :(得分:3)
我不确定我是否理解正确,似乎很奇怪没人提到这一点:
Map<Character, ShapeFactory> dict = new HashMap<>();
dict.put('C', new CircleFactory());
dict.put('R', new RectangleFactory());
dict.put('T', new TriangleFactory());
...
ShapeFactory factory = dict.get(symbol);
Shape shape = factory.create(data);
答案 1 :(得分:2)
您可以使用反射动态创建实例。
String className = "com.shape.Triangle";
Class classDefinition = Class.forName(className);
Object obj = classDefinition.newInstance();
或强>
只需使用if-else
创建特定类的实例。
答案 2 :(得分:1)
Exec
执行代码
您可以使用Java执行相同的操作,例如使用javassist
您可以读取数据文件,编译语句并将它们插入到您自己的类中
但这似乎有点矫枉过正。
您也可以使用java反射,但它会产生一个脆弱且不清晰的代码。
相反if else if,
我认为你应该使用抽象并按对象类型创建工厂类。
它可能看起来像:
Scanner file = new Scanner (new File("shapes.dat"));
String s;
Map<Character, ShapeBuilder> dict = new HashMap<Character,String>();
dict.put('C', new CircleBuilder());
dict.put('R', new RectangleBuilder());
dict.put('T', new TriangleBuilder());
while (file.hasNextLine()){
s = file.nextLine().trim();
char shapeSymbol = ...; // computed from s
ShapeBuilder builder = dict.get(shapeSymbol);
Shape shape = builder.build(s);
}
答案 3 :(得分:1)
您实际上可以使用多态来避免if-else语句。因此,您可以创建实际执行所需的两个作业的对象,匹配线并创建形状。所以你可以使用类似下面的代码。
public class Program {
public static void main() throws FileNotFoundException {
Scanner file = new Scanner(new File("shapes.dat"));
while (file.hasNextLine()) {
String line = file.nextLine().trim();
Shape shape = new Matches(
new RectangleMatch(),
new TriangleMatch(),
new SquareMatch(),
new CircleMatch()
).map(line);
}
}
public interface ShapeMatch {
boolean matches(String line);
Shape shape(String line);
}
public static final class RectangleMatch implements ShapeMatch {
@Override
public boolean matches(String line) {
return line.startsWith("R");
}
@Override
public Shape shape(String line) {
String[] dimensions = line.substring(2).split(" ");
return new Rectangle(
Integer.parseInt(dimensions[0]),
Integer.parseInt(dimensions[1]),
Integer.parseInt(dimensions[2])
);
}
}
public static final class CircleMatch implements ShapeMatch {
@Override
public boolean matches(String line) {
return line.startsWith("C");
}
@Override
public Shape shape(String line) {
return new Circle(Integer.parseInt(line.substring(2, line.indexOf(" "))));
}
}
public interface ShapeMapping {
Shape map(String line);
}
public static final class Matches implements ShapeMapping {
private final Iterable<ShapeMatch> matches;
public Matches(ShapeMatch... matches) {
this(Arrays.asList(matches));
}
public Matches(Iterable<ShapeMatch> matches) {
this.matches = matches;
}
@Override
public Shape map(String line) {
for (ShapeMatch match : matches) {
if (match.matches(line)) {
return match.shape(line);
}
}
throw new RuntimeException("Invalid shape entry line.");
}
}
}