「ファクトリ メソッド」と「抽象ファクトリ」の主な違いは、ファクトリ メソッドは単一のメソッドであり、抽象ファクトリはオブジェクトであることです。でも、それが何なのか言えないこともある、例えば
class Product{
}
interface Facotory{
public Product create();
}
class FactoryA implements Facotory{
public Product create() {
return null;
}
}
class FactoryB implements Facotory{
public Product create() {
return null;
}
}
ファクトリメソッドかアブストラクトファクトリか教えていただけますか?ありがとうございます!