繁体   English   中英

有什么方法可以处理C ++中从C#exe抛出的异常?

[英]Any way to handle an exception thrown from called c# exe in c++?

我想知道有什么方法可以处理我从C ++代码中调用exe的内部异常吗?

我的示例代码:

char *fProg = "..\\ConsoleApp\\EZF\\EncryptZipFtp.exe";
char *fPath = "C:\\Users\\min\\Desktop\\Foto";
char *fPass = "wxRfsdMKH1994wxRMK";

char command[500];
sprintf (command, "%s %s %s", fProg, fPath, fPass); 

try 
{
   system(command);
}
catch(exception &err)
{
}

您需要检查system()的返回值(因为您需要检查所有C函数的返回值)。 像这样:

int status = system(command);
if (status == -1)
    std::cerr << "oops, could not launch " << command << std::endl;

int rc = WEXITSTATUS(status);
if (rc != 0)
    std::cerr << "error from " << command << ": " << rc << std::endl;

如果子程序表现良好,它将在发生未处理的异常时返回非零值以指示失败。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM