• assert用于判断表达式的值是否为0,为空的话,则不行相关语句,不为空,则执行相关语句

代码

// VirtualInherit.cpp : 定义控制台应用程序的入口点。
// C++ 虚继承应用

#include "stdafx.h"
#include <assert.h>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
int mm = 0;
int nn = 1;
assert(nn);
cout << "nn通过测试" << endl;
assert(mm);
cout << "mm通过测试" << endl;
system("pause");
return 0;
}