design_patterns icon indicating copy to clipboard operation
design_patterns copied to clipboard

简单工厂模式有一行日志错误了

Open pang1567 opened this issue 4 years ago • 0 comments

` ConcreteProductA::ConcreteProductA(){

}

ConcreteProductA::~ConcreteProductA(){

}

void ConcreteProductA::Use() { cout << "use productB" << endl; // use productA } `

pang1567 avatar Jul 06 '21 02:07 pang1567