c++ stl二进制转换
Given a binary string, we have to convert it into an integer using stoi() function.
给定一个二进制字符串,我们必须使用stoi()函数将其转换为整数。
C ++ STL stoi()函数
(
C++ STL stoi() function
)
stoi()
stands for
string to integer
, it is a standard library function in C++ STL, it is used to convert a given string in various formats (like binary, octal, hex or a simple number in string formatted) into an integer.
stoi()
表示将
字符串转换为整数
,它是C ++ STL中的标准库函数,用于将各种格式(例如二进制,八进制,十六进制或字符串格式的简单数字)的给定字符串转换为整数。
Syntax:
int stoi (const string& str, [size_t* idx], [int base]);
Parameters:
const string& str is an input string.
const string&str是输入字符串。
size_t* idx is an optional parameter (pointer to the object whose value is set by the function), it's default value is 0 or we can assign it to nullptr.
size_t * idx是一个可选参数(指向由函数设置值的对象的指针),其默认值为0或我们可以将其分配给nullptr 。
int base is also an optional parameter, its default is 10. It specifies the radix to determine the value type of input string (2 for binary, 8 for octal, 10 for decimal and 16 for hexadecimal).
int base也是一个可选参数,默认值为10。它指定基数来确定输入字符串的值类型(二进制为2,八进制为8,十进制为10,十六进制为16)。
Return value: It returns converted integer value.
返回值:返回转换后的整数值。
Example:
Input:
string bin_string = "10101010";
Function call:
stoi(bin_string, 0, 2);
Output:
C ++ STL代码将二进制字符串转换为整数 (C++ STL code to convert a binary string into an integer )
#include <iostream>
#include <string>
using namespace std;
int main()
string bin_string = "10101010";
int number =0;
number = stoi(bin_string, 0, 2);
cout<<"bin_string: "<<bin_string<<endl;
cout<<"number: "<<number<<endl;
bin_string = "111100001100111010";
number = stoi(bin_string, 0, 2);
cout<<"bin_string: "<<bin_string<<endl;
cout<<"number: "<<number<<endl;
return 0;
Output
bin_string: 10101010
number: 170
bin_string: 111100001100111010
number: 246586
Reference: std::stoi()
参考: std :: stoi()
翻译自: https://www.includehelp.com/stl/convert-binary-string-to-integer-using-stoi-function-in-cpp-stl.aspx
c++ stl二进制转换
stl取出字符串中的字符Given a hex string, we have to convert it into an integer using stoi() function.
给定一个十六进制字符串,我们必须使用stoi()函数将其转换为整数。
C ++ STL stoi()函数 (C++ STL stoi() function)
stoi() stands for string ...
1、 功能
int stoi (const string& str, size_t* idx = 0, int base = 10);
int stoi (const wstring& str, size_t* idx = 0, int base = 10);
将str 的内容 解析为一个 特定base的int数值。
1. str
一个表示整数的string类型的对象
2. idx
如果为null,代表不使用这个参数
指向size_t类型对象的指针,该函数将其值设置为str中数值
网上有句话说:不懂STL不要说你会C++。STL是C++中的优秀作品,有了它的陪伴,许多底层的数据结构以及算法都不需要自己造轮子,站在前人的肩膀上,健步如飞地飞速开发。
数制:计数的方法,指用一组固定的符号和统一的规则来表示数值的方法数位:指数字符号在一个数中所处的位置基数:指在某种进位计数制中,数位上所能使用的数字符号的个数位权:指在某种进位计数制中,数位所代表的大小,即处在某一位上的“1”所表示的数值的大小。这些东西等一会涉及到二进制的核心思想,从某种程度上讲,其他转二位作为一个环节跳板,然后转到目的进制。
代码如下: 代码如下:<SPAN xss=removed> char* p = “1010110001100”; int n = 0; for(int i=0;i<strlen xss=removed>
您可能感兴趣的文章:C++ 十进制转换为二进制的实例代码C++实现string存取二进制数据的方法C++实现读入二进制数并转换为十进制输出详解C++编程中对二进制文件的读写操作C++二进制翻转实例分析C++中几种将整数