gpt4 book ai didi

c++ - C 头文件中的字符串

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:17:11 26 4
gpt4 key购买 nike

我的头文件如下:

#include <iostream>
#include <string>
#include <windows.h>
#include <math.h>

//using namespace std;

std::string StringMultiply(string Str, int Mult)
{
std::string Return;

for (int Index = 0; Index <= Mult; Index++)
{
Return += Str;
}

return Return;
}

编译它会产生大量错误,其中大部分与缺少 string 数据类型有关。取消注释 using namespace std; 行修复它,但有人告诉我这在头文件中是不好的做法。

最佳答案

改变

std::string StringMultiply(string Str, int Mult)

std::string StringMultiply(std::string Str, int Mult)

关于c++ - C 头文件中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4159383/

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