在C++中,工厂模式用于创建对象,但是在处理异常情况时,需要谨慎处理。以下是一些建议:
std::exception
,这样可以方便地处理工厂模式中可能出现的异常情况。class FactoryException : public std::exception {
public:
explicit FactoryException(const std::string& message) : message_(message) {}
const char* what() const noexcept override {
return message_.c_str();
}
private:
std::string message_;
};
class ProductFactory {
public:
static std::unique_ptr<Product> createProduct(const std::string& type) {
if (type == "ProductA") {
return std::make_unique<ProductA>();
} else if (type == "ProductB") {
return std::make_unique<ProductB>();
} else {
throw FactoryException("Invalid product type: " + type);
}
}
};
int main() {
try {
auto product = ProductFactory::createProduct("ProductC");
} catch (const FactoryException& e) {
std::cerr << "Error: " << e.what()<< std::endl;
}
return 0;
}
通过这种方式,您可以在工厂模式中处理异常情况,确保程序在遇到错误时能够正常运行。