我正在爲我的域對象製作一個工廠。域對象是原型對象,所以在業務邏輯運行時它們會經常實例化。以下是設計: 1)某些域接口和類: public interface FirstDomainInterface {}
public class FirstDomainClass implements FirstDomainInterface {
private String firstName;
我想實現工廠類和接口。但我收到以下錯誤消息。我創建了一個工廠類,它決定返回NormalTaxManager或ImportedTaxManager的類。我使用接口提供了抽象。 #include<iostream>
#include<vector>
using namespace std;
class TaxInterface
{
public:
virtual int calc