gpt4 book ai didi

c++ - 获得字符串的长度后,如何将长度数字捕获为整数变量以供其他地方使用?

转载 作者:太空宇宙 更新时间:2023-11-03 17:25:16 24 4
gpt4 key购买 nike

下面是我失败的尝试,终端读取 0 作为“lengthCapture”。我试过用谷歌搜索答案,但并不高兴。

我的文本文件名为“Boogiedy.txt”,内容为“Boogiedy, Boogiedy, Boooooo”

终端显示:

Boogiedy, Boogiedy, Boooooo
27
0

我的代码:

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main()
{
string boogiedy;
int lengthCapture = boogiedy.length();

ifstream inputFile ("boogiedy.txt");

if(inputFile.is_open())
{
while (getline(inputFile,boogiedy))
{
cout <<boogiedy<< '\n';
cout <<boogiedy.length() << endl;
}
}
else
cout << "file is not open" << '\n';

inputFile.close();

cout << lengthCapture << endl;
}

最佳答案

当您获取字符串的大小时,您的变量仍然是空的。

试试这个:

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main()
{
string boogiedy;
int lengthCapture = 0;

ifstream inputFile ("boogiedy.txt");

if(inputFile.is_open())
{
while (getline(inputFile,boogiedy))
{
cout <<boogiedy<< '\n';
cout <<boogiedy.length() << endl;
lengthCapture += boogiedy.length();
}
}
else
cout << "file is not open" << '\n';

inputFile.close();

cout << lengthCapture << endl;
}

关于c++ - 获得字符串的长度后,如何将长度数字捕获为整数变量以供其他地方使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59495457/

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