gpt4 book ai didi

c++ - 如何在 C++ 中以干净的方式处理异常

转载 作者:太空狗 更新时间:2023-10-29 20:14:59 24 4
gpt4 key购买 nike

我的问题是我正在编写一个程序,该程序应该是将来可读的,并且该程序有很多异常情况。因此,每当我必须抛出异常时,我都必须编写 10 多行代码来初始化我的异常类并将程序中的信息附加到它。例如如下:

MyExceptionClass ex;
ex.setErrorMessage("PIN_CANNOT_GO_IN");
ex.setErrorDetails("The pin is asked to go to the state IN while the depth of the r-coordinate does not support it");
ex.setResolutionMessage("Configure your coordinates-file to move first to the correct position before changing the state of the pin");
ex.VariableList().resize(5);
ex.VariableList()[0].push_back("Pin state: ");
ex.VariableList()[0].push_back(ToString(pin.getPinState()));
ex.VariableList()[1].push_back("Pin target state: ");
ex.VariableList()[1].push_back(ToString(coordinatesData[coordinatesIndex].targetPinState));
ex.VariableList()[2].push_back("Current r Value: ");
ex.VariableList()[2].push_back(ToString(EncoderPosition.r));
ex.VariableList()[3].push_back("Current phi Value: ");
ex.VariableList()[3].push_back(ToString(EncoderPosition.phi));
ex.VariableList()[4].push_back("Current z Value: ");
ex.VariableList()[4].push_back(ToString(EncoderPosition.z));

ex.printLog();
ex.writeLog(exceptionLogFilePath.getValue());

throw ex;

所以对于只有 5 个变量,我必须写下所有这些......有没有一种有效的方法来包含程序中的所有信息(至少是变量)​​而不是每次我想抛出异常时都重写所有这些?

提前致谢。

最佳答案

您可以使用一个通用函数 (fill_out_exception_parameters) 为通用异常填充 VariableList 对象,并在您编写的任何新异常类中重复使用它

关于c++ - 如何在 C++ 中以干净的方式处理异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14796433/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com