当我尝试包含apstring.h时,我有一个错误。有人知道替代代码等吗?这是错误所在的代码。
#include <iostream>
#include "apstring.h" //error is located under #include, the error is (Error: cannot open source file "apstring.h")
using namespace std;
int main()
{
system ("pause");
return 0;
}
答案 0 :(得分:3)
您可以在此处找到头文件: http://mathbits.com/MathBits/CompSci/apstring.h
和相应的cpp文件: https://users.cs.duke.edu/~ola/ap/code/apstring.cpp
你必须用strcpy_s替换strcpy以避免安全问题
以下是我在视觉工作室2015中使用您的程序的两个文件的链接:
您只需在visual studio中创建一个控制台应用程序,添加您的主文件和提供的cpp文件
然后在Visual Studio
中添加名为Header Files的头文件的部分添加头文件如果您在Linux下,则必须将文件放在同一目录中,但我没有在Linux下测试