所以我目前正在学习C ++,并决定制作一个程序来测试我迄今为止学到的技能。现在在我的代码中我想检查用户输入的值是否为double,如果它不是double,我将放置if循环并要求它们重新输入。我遇到的问题是如何检查用户输入的变量类型,如果用户输入字符或字符串,我可以输出错误消息。这是我的代码:
//cubes a user entered number
#include <iostream>
using namespace std;
double cube(double n); //function prototype
int main()
{
cout << "Enter the number you want to cube: "; //ask user to input number
double user;
cin >> user; //user entering the number
cout << "The cube of " << user << " is " << cube(user) << "." << endl; //displaying the cubed number
return 0;
}
double cube (double n) //function that cubes the number
{
return n*n*n; // cubing the number and returning it
}
编辑:我不得不说我刚开始并且对你的代码没有任何线索,但我会查看你的链接。顺便说一句,我还没有学习如何使用模板,我正在学习如何处理数据,只有我的C ++ Primer Plus第5版第3章。
答案 0 :(得分:12)
您可以使用std::istringstream
:
#include <sstream>
bool is_double(std::string const& str) {
std::istringstream ss(str);
// always keep the scope of variables as close as possible. we see
// 'd' only within the following block.
{
double d;
ss >> d;
}
/* eat up trailing whitespace if there was a double read, and ensure
* there is no character left. the eof bit is set in the case that
* `std::ws` tried to read beyond the stream. */
return (ss && (ss >> std::ws).eof());
}
帮助您弄清楚它的作用(简化了一些要点):
operator>>
从中读取双精度值。这意味着跳过空格并尝试读取双精度。abc
中,流会设置失败位。请注意,3abc
之类的情况会成功,并且不会设置失败位。ss
计算为零值,这意味着 false 。 eof()
将返回 true ,如果我们尝试读取结束。std::ws
完全相同),{{1将返回true。请注意,此检查会确保eof
不会通过我们的检查。3abc
的左右两种情况都评估为 true ,我们会向调用者返回true,表示给定的字符串是双精度。类似地,您检查&&
和其他类型。如果您知道如何使用模板,那么您也知道如何将其概括为其他类型。顺便说一下,这正是int
为您提供的内容。看看:http://www.boost.org/doc/libs/1_37_0/libs/conversion/lexical_cast.htm。
这种方式有优势(快速)但也有主要缺点(不能使用模板推广,需要使用原始指针):
boost::lexical_cast
#include <cstdlib>
#include <cctype>
bool is_double(std::string const& s) {
char * endptr;
std::strtod(s.c_str(), &endptr);
if(endptr != s.c_str()) // skip trailing whitespace
while(std::isspace(*endptr)) endptr++;
return (endptr != s.c_str() && *endptr == '\0');
}
会将strtod
设置为已处理的最后一个字符。在我们的例子中,终止空字符。如果未执行转换,则将endptr设置为赋予endptr
的字符串的值。
strtod
可以解决这个问题。但是监督某些事情很容易。这是正确的方法:
std::sscanf
#include <cstdio>
bool is_double(std::string const& s) {
int n;
double d;
return (std::sscanf(s.c_str(), "%lf %n", &d, &n) >= 1 &&
n == static_cast<int>(s.size()));
}
将返回转换的项目。虽然标准规定{count}不包含在该计数中,但有几个来源相互矛盾。最好比较std::sscanf
以使其正确(请参阅%n
的联机帮助页)。 >=
将设置为已处理字符的数量。它与字符串的大小进行比较。两个格式说明符之间的空格占可选的尾部空格。
如果您是初学者,请阅读sscanf
并以C ++方式进行操作。在你对C ++的一般概念感觉良好之前,最好不要乱用指针。
答案 1 :(得分:7)
没有合适的方法来检查字符串确实是否在标准库中包含double。您可能想要使用Boost。以下解决方案的灵感来自C++ Cookbook中的配方3.3:
#include <iostream>
#include <boost/lexical_cast.hpp>
using namespace std;
using namespace boost;
double cube(double n);
int main()
{
while(true)
{
cout << "Enter the number you want to cube: ";
string user;
cin >> user;
try
{
// The following instruction tries to parse a double from the 'user' string.
// If the parsing fails, it raises an exception of type bad_lexical_cast.
// If an exception is raised within a try{ } block, the execution proceeds
// with one of the following catch() blocks
double d = lexical_cast <double> (user);
cout << "The cube of " << d << " is " << cube(d) << "." << endl;
break;
}
catch(bad_lexical_cast &e)
{
// This code is executed if the lexical_cast raised an exception; We
// put an error message and continue with the loop
cout << "The inserted string was not a valid double!" << endl;
}
}
return 0;
}
double cube (double n)
{
return n*n*n;
}
答案 2 :(得分:1)
sscanf可以做你想做的事;它返回正确处理的参数数量。这应该让你开始:
//cubes a user entered number
#include <iostream>
#include <cstdio>
using namespace std;
double cube(double n); //function prototype
int main()
{
cout << "Enter the number you want to cube: "; //ask user to input number
string user;
cin >> user; //user entering the number
// Convert the number to a double.
double value;
if(sscanf(user.c_str(), "%lf", &value) != 1)
{
cout << "Bad! " << user << " isn't a number!" << endl;
return 1;
}
cout << "The cube of " << user << " is " << cube(user) << "." << endl; //displaying the cubed number
return 0;
}
double cube (double n) //function that cubes the number
{
return n*n*n; // cubing the number and returning it
}
其他答案中公布的其他方法各有利弊。这个问题与尾随字符有关,而不是“C ++” - y。
答案 3 :(得分:0)
我不得不说我刚开始并且对你的代码没有任何线索,但我会查看你的链接。顺便说一句,我还没有学习如何使用模板,我正在学习如何处理数据,只有我的C ++ Primer Plus第5版第3章。
答案 4 :(得分:0)
您可以依靠C并使用strtod
您编程读取字符串,然后将其传递给尝试将字符串转换为double的函数。
bool is_double(const char* strIn, double& dblOut) {
char* lastConvert = NULL;
double d = strtod(strIn, &lastConvert);
if(lastConvert == strIn){
return false;
} else {
dblOut = d;
return true;
}
}