gpt4 book ai didi

c++ - Lambda auto在c++中输入函数给出错误

转载 作者:搜寻专家 更新时间:2023-10-31 00:27:11 25 4
gpt4 key购买 nike

我正在尝试创建一个类似于 python input() 中的输入函数,但由于函数返回变量的方式,它们必须采用函数类型 void, int 的格式, std::string 所以当用户输入一行时,它被设置为它必须返回的内容(即 int print() 意味着返回也必须是 int 所以 9 = 57).这是我当前的代码状态以及我想要发生的事情与正在发生的事情的示例。

//Input
auto input = [](const auto& message = "") {
std::cout << message;
const auto& x = std::cin.get();
return x;
};

const auto& a = input("Input: ");
print(a);

使用当前代码,当我在控制台中键入 9 时,它返回 a 作为 57。我希望它会以简单的 9 形式返回,但这显然不是我在键盘上键入的 int。它还将输入“字符串”返回为 115,我不知道为什么要这样做。最终我希望它像 pythons input() 一样运行并将它作为字符串返回。 9 = 9 和 '字符串' = '字符串。

最佳答案

如果你想要像 python input() 这样的东西,我认为你应该在这种情况下硬编码一个 std::string 类型。

auto input = [](const std::string& message = "") {
std::cout << message;
std::string x;
std::cin >> x;
return x;
};
//print can be auto to be more generic
auto print = [](const auto& message) {std::cout << message << std::endl;};
auto a = input("Input: "); //a is a string
print(a);

如果你输入一个int,想要返回一个int,你可以用stoi转换它

auto b = std::stoi(input("Input: ")); //convert string to int, and b is an int
print(b);

更新由于 python input 一次读取整行,但是std::cin >> x; 只会读取到第一个空格,

std::getline(std::cin, x);//This will read the whole line including spaces

可能是更好的解决方案。

关于c++ - Lambda auto在c++中输入函数给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50072681/

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