gpt4 book ai didi

c++ - 初始化字符串指针数组并通过函数调用打印相同的内容不起作用,为什么?

转载 作者:行者123 更新时间:2023-11-30 02:36:06 24 4
gpt4 key购买 nike

我必须初始化一个字符串指针数组以指向 4 个 worker 名称。然后我想调用一个函数 func1() 来打印出所有的名字。我必须使用通过引用或值传递或者可能是这些的混合来执行此操作,任何事情都很好。

我已经完成了以下类似类型的查询

how to initialize string pointer?

c++ initialization of an array of string pointers

returning array of string from function not working as expected

也尝试过使用 Books Deitel 和 deitel和 C++ 入门然而,无法理解或澄清我对字符串指针数组的理解,以至于现在我什至对它的基本原理感到困惑。

虽然,根据我在下面编写的代码,在网上回答了很多类似的问题后,我只能得到这么多。

我的代码:-

#include <iostream>
#include <string>
#include <cstdlib>

using namespace std;

void func1(string *str, int *num)
{
for (int i = 0; i <= (*num); i++)
{
cout<<"\n"<<str[i]<<"\n";
}
cout<<"reached to the end of calling function\n\n";
}

int main()
{
int num;
cout<<"\nplease input your prefered size of array\n";
cin >> num; // Number of names elements
cout<<"\nplz enter the desired names\n";
string *str = new string[num];
for (int i=0;i<num;i++)
{
getline(cin, str[i]);
}

cout<<"now printing all the names through a calling function\nusing appropriate parameters\n";

func1(str, &num);

return 0;
}

当前行为:-

代码执行并接受我的输入,但一旦我给出倒数第二个值,它就会提示错误,提示“file1.exe 已停止工作”。但是,它会继续执行剩余的任务并调用 func1() 并打印被调用函数的结束行。

输出:

请输入您喜欢的数组大小

4

请输入想要的名字

实践

实践经验

Pratik Vyas A

现在通过调用函数打印所有名字使用适当的参数

实践

实践经验

Pratik Vyas A


进程在 14.24 秒后退出,返回值 255按任意键继续 。 . .



如上所述,我一输入第三个名字 Pratik Vyas A 就收到提示错误,因此我必须关闭终端。

我知道这可能是一些非常基本的问题,但只有当我的大脑能够处理在线提供的其他多种方式时,我才会将这个问题空间留给其他一些有值(value)的重要问题。高度重视任何帮助。

最佳答案

如果添加行

cin.ignore();

在读取输入之前,不会发生这种情况。

问题的根源是当你用cin like读取输入的时候

cin >> num;

cin 读取到换行符,然后停在那里(在换行符之前,将换行符留在缓冲区中)。当您调用 getline 时,它首先看到的是用户输入数字时留在缓冲区中的 \n,因此您在第一个元素中得到一个空字符串你的阵列。请注意您的代码如何在打印名称之前留下三行的间隙,而当您只告诉它留下一行时 - 这是因为这些行的中间是(空的)第一个字符串。

这是进行了更改的 main 方法,我已经在我的计算机上测试了这段代码并且它可以正常工作:

int main()
{
int num;
cout<<"\nplease input your prefered size of array\n";
cin >> num; // Number of names elements
cout<<"\nplz enter the desired names\n";
string *str = new string[num];
cin.ignore();
for (int i=0;i<num;i++)
{
getline(cin, str[i]);
}

cout<<"now printing all the names through a calling function\nusing appropriate parameters\n";

func1(str, &num);

return 0;
}

关于c++ - 初始化字符串指针数组并通过函数调用打印相同的内容不起作用,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33156460/

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