gpt4 book ai didi

c++ - ASSERT-C++ 的编译器错误

转载 作者:行者123 更新时间:2023-11-30 00:40:33 26 4
gpt4 key购买 nike

#include "stdafx.h"
#include <iostream>
#include <assert.h>

using namespace std;

class A
{
public:
int IsLocked();
};
int A::IsLocked()
{
return false;
}

int main()
{
A a1;
ASSERT(a1.IsLocked());
return 0;
}

由于未找到断言标识符而出现错误....我也尝试包括..

最佳答案

应该是:

assert(a1.IsLocked())

注意小写。

关于c++ - ASSERT-C++ 的编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5789692/

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