我想创建一个Assert函数,在不打开控制台的情况下在新窗口中显示消息。该函数需要独立于O.S,如果可能的话不使用C++外部库。MessageBox操作系统。独立
#include <string>
#include <sstream>
#ifdef WIN32
#include <windows.h> // include windows header, for Windows Based Sistems.
#else
// ...
#endif
void Assert (bool cond,const char* file,int line,const char* desc)
{
if (cond) return; // No Assertion.
#ifdef WIN32
// Use MessageBox function to display the information.
// For Example ...
std::stringstream st;
st << "There Was An Error At Runtime ! \n";
st << "File: " << file << "\n";
st << "Line: " << line << "\n";
st << "Description: " << desc << "\n";
st << "Do You Want To Continue Running the Application?\n";
if (MessageBox (NULL,"Unexpected Error", str.str().c_str(), MB_YESNO) == IDNO)
exit (-1);
#else
// Do Something, but in Unix Base Systems.
#endif
}
#define assert(condition,description) \
__assert__ (condition,__FILE__,__LINE__,description)
极品C++代码以输出在其他O.S
定义其他操作系统 - 有这么多 – Zaffy
linux,macintosh –
为什么不在#ifdef WIN32的#else之后编写代码?其余的会变得更简单,我们不必猜测。 –