如何在 C++ 中向字符串中添加字符?
Posted
技术标签:
【中文标题】如何在 C++ 中向字符串中添加字符?【英文标题】:How to add characters to strings in C++? 【发布时间】:2020-06-10 21:40:44 【问题描述】:我正在编写一个 IP 计算器程序来将 IP 地址转换为广播地址、网络地址等。
我需要先将地址转换为 8 位二进制,我已经使用 itoa
进行十进制到二进制的转换,但我仍然需要使其始终为 8 位。
我想用switch
来做这件事。首先程序计算二进制形式的位数,然后使用switch
(我把它放在评论中,我需要先弄清楚这个问题)和if
它在数字前面添加足够的零(此时实际上是一个字符串)所以它总是 8 个字符长。
我想使用string e1('00',e);
指令在字符串中添加两个零,但它不起作用。 e
是原始字符串,e1 是新的 8 个字符的字符串。它不想编译,停在这一行(string e1('00',e);
)并给出:
error: no matching function for call to 'std::__cxx11::basic_string<char>:: basic_string(int, std::__cxx11::string)'|
我的代码:
#include <iostream>
#include <string>
#include <bits/stdc++.h>
using namespace std;
/**
* C++ version 0.4 std::string style "itoa":
* Contributions from Stuart Lowe, Ray-Yuan Sheu,
* Rodrigo de Salvo Braz, Luc Gallant, John Maloney
* and Brian Hunt
*/
std::string itoa(int value, int base)
std::string buf;
// check that the base if valid
if (base < 2 || base > 16)
return buf;
enum
kMaxDigits = 35
;
buf.reserve(kMaxDigits); // Pre-allocate enough space.
int quotient = value;
// Translating number to string with base:
do
buf += "0123456789abcdef"[std::abs(quotient % base)];
quotient /= base;
while (quotient);
// Append the negative sign
if (value < 0)
buf += '-';
std::reverse(buf.begin(), buf.end());
return buf;
int main()
cout << "Dzien dobry." << endl
<< "Jest OK!\n";
int a, b, c, d, i, j, k, l, m, n, o, p, r, s, t, u, w, v, x, y, z;
cout << "Wprowadz pierwszy oktet: ";
cin >> a;
cout << "Wprowadz drugi oktet: ";
cin >> b;
cout << "Wprowadz trzeci oktet: ";
cin >> c;
cout << "Wprowadz czwarty oktet: ";
cin >> d;
cout << "Wyswietlam adres IP w postaci dziesietnej: " << a << "." << b << "." << c << "." << d << "\n";
char res[1000];
itoa(a, res, 2);
string e(res);
itoa(b, res, 2);
string f(res);
itoa(c, res, 2);
string g(res);
itoa(d, res, 2);
string h(res);
//
x = e.size();
cout << x << "\n";
/*
if (x<8)
switch(x)
case 1: string e(1);
break;
case 2: string e(3);
break;
case 3: string e(2);
break;
case 4: string e(0);
break;
case 5: string e(4);
break;
case 6: string e(7);
break;
case 7: string e(0);
break;
default: cout << "error";
*/
string e1('00', e);
cout << e1 << "\n";
cout << "Wyswietlam adres IP w postaci dwojkowej: " << e1 << "." << f << "." << g << "." << h;
return 0;
【问题讨论】:
【参考方案1】:单引号用于单个字符,双引号用于字符串,即多个字符,所以需要"00"
。
您提供的参数没有std::string
构造函数,您可以使用其他方法:
string e1;
e1.append("00").append(e);
或者
string e1 = "00";
e1 += e;
补充说明:
Avoid using #include <bits/stdc++.h>
Avoid using using namespace std;
【讨论】:
非常感谢!字符串 e1 = "00"; e1 += e;效果很好。我使用了“使用命名空间标准”,因为这是他们在学校教给我们的。此处使用了“#include只需使用+
或+=
:
std::string foo = "Hello";
std::string bar = foo + " world";
std::cout << bar; // Prints Hello world
您还可以使用+=
就地修改字符串:
std::string foo = "Hello";
foo += " world"; // foo is "Hello world" now
请注意,这会使任何现有的指向foo
中的字符的迭代器无效。您只需再次调用begin
和end
即可获得新的begin
和end
迭代器。
【讨论】:
以上是关于如何在 C++ 中向字符串中添加字符?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 for 循环中向 Pandas Dataframe 添加字符串值?
如何在 Pandas 中向 .str.contains 添加多个字符串? [复制]