当你用C++编码时,常常会有这样的时分,你会想把一种数据类型转化为另一种。
在这篇文章中,你将看到两种最盛行的办法来学习怎么在C++中把字符串转化为整数。
让我们开始吧!
C++中的数据类型
C++编程言语有一些内置的数据类型。
-
int
,用于整数(整数)(例如10,150)。 -
double
,用于浮点数(例如5.0,4.5)。 -
char
,用于单个字符(例如’D’,’!’)。 -
string
, 一系列的字符(例如 “Hello”)。 -
bool
,用于布尔值(真或假)。
C++是一种强类型的编程言语,这意味着当你创立一个变量时,你必须明确地声明它将存储什么类型的值。
怎么在C++中声明和初始化int
s
要在C++中声明一个int
变量,你需要首先写出该变量的数据类型–本例中是int
。这将让编译器知道该变量能够存储什么类型的值,因而它能够采纳什么行动。
接下来,你需要给变量一个名字。
最终,不要忘了用分号来完毕句子。
#include <iostream>
int main() {
int age;
}
然后,你能够给你创立的变量一个值,像这样。
#include <iostream>
int main() {
int age;
age = 28;
}
你能够经过初始化变量和最终打印效果来组合这些动作,而不是作为单独的步骤来做。
// a header file that enables the use of functions for outputing information
//e.g. cout or inputing information e.g. cin
#include <iostream>
// a namespace statement; you won't have to use the std:: prefix
using namespace std;
int main() { // start of main function of the program
int age = 28;
// initialize a variable.
//Initializing is providing the type,name and value of the varibale in one go.
// output to the console: "My age is 28",using chaining, <<
cout << "My age is: " << age << endl;
}// end the main function
怎么在C++中声明和初始化string
s
字符串是单个字符的集合。
在C++中声明字符串的工作方式与声明和初始化int
s非常类似,你在上面的章节中看到了这一点。
C++标准库供给了一个string
类。为了运用字符串数据类型,你必须在文件的顶部,在#include <iostream>
之后,包含<string>
头部库。
在包含该头文件之后,你还能够增加你之前看到的using namespace std;
。
在其他方面,参加这一行后,你在创立字符串变量时将不必运用std::string
,只需运用string
。
#include <iostream>
#include <string>
using namespace std;
int main() {
//declare a string variable
string greeting;
greeting = "Hello";
//the `=` is the assignment operator,assigning the value to the variable
}
或者你能够初始化一个字符串变量并将其打印到控制台。
#include <iostream>
#include <string>
using namespace std;
int main() {
//initialize a string variable
string greeting = "Hello";
//output "Hello" to the console
cout << greeting << endl;
}
如前所述,C++是一种强类型的言语。
假如你试图给出一个与数据类型不一致的值,你会得到一个过错。
别的,将字符串转化为整数并不像运用类型转化那样简略,你能够在将double
s转化为int
s时运用。
例如,你不能这样做。
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "7";
int num;
num = (int) str;
}
编译后的过错将是。
hellp.cpp:9:10: error: no matching conversion for C-style cast from 'std::__1::string' (aka
'basic_string<char, char_traits<char>, allocator<char> >') to 'int'
num = (int) str;
^~~~~~~~~
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string:875:5: note: candidate function
operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); }
^
1 error generated.
有几种办法能够将字符串转化为int,你会在后边的章节中看到其中两种办法。
怎么运用stoi()
函数将字符串转化为int
将字符串目标转化为数字int的一个有效办法是运用stoi()
函数。
这种办法通常用于较新版本的C++,在C++11中被引入。
它将一个字符串值作为输入,并将它的整数版本作为输出返回。
#include <iostream>
#include <string>
using namespace std;
int main() {
// a string variable named str
string str = "7";
//print to the console
cout << "I am a string " << str << endl;
//convert the string str variable to have an int value
//place the new value in a new variable that holds int values, named num
int num = stoi(str);
//print to the console
cout << "I am an int " << num << endl;
}
输出。
I am a string 7
I am an int 7
怎么运用stringstream
类将一个字符串转化为一个int
stringstream
类首要用于前期版本的C++。它经过对字符串进行输入和输出来工作。
要运用它,你首先要在你的程序顶部参加sstream
库,参加一行#include <sstream>
。
然后你增加stringstream
,并创立一个stringstream
目标,该目标将保存你要转化为int的字符串的值,并在转化为int的过程中运用。
你运用<<
操作符,从字符串变量中提取字符串。
最终,你运用>>
操作符将新转化的int值输入到int变量中。
#include <iostream>
#include <string>
#include <sstream> // this will allow you to use stringstream in your program
using namespace std;
int main() {
//create a stringstream object, to input/output strings
stringstream ss;
// a variable named str, that is of string data type
string str = "7";
// a variable named num, that is of int data type
int num;
//extract the string from the str variable (input the string in the stream)
ss << str;
// place the converted value to the int variable
ss >> num;
//print to the consloe
cout << num << endl; // prints the intiger value 7
}
总结
这便是你的效果!你已经看到了在C++中把字符串转化为整数的两种简略办法。
谢谢你的阅览,祝你学习愉快