Heim >Backend-Entwicklung >C++ >Wie kann ich Strings und ganze Zahlen in C effizient verketten?
Das Verketten eines Strings und einer Ganzzahl in C ist eine häufige Aufgabe, aber es kann schwierig sein, die effizienteste und effektivste Methode zu finden prägnante Art und Weise, es zu tun. Um dies zu erreichen, können verschiedene Methoden eingesetzt werden, und die Wahl hängt von Faktoren wie Leistung, Sicherheit und Plattformkompatibilität ab.
1. Verwendung von Boosts lexical_cast:
#include <boost/lexical_cast.hpp> std::string name = "John"; int age = 21; std::string result = name + boost::lexical_cast<std::string>(age);
2. Mit std::to_string:
#include <iostream> std::string name = "John"; int age = 21; std::string result = name + std::to_string(age);
3 von C 11. Verwendung von FastFormat.Format:
#include <FastFormat.h> std::string name = "John"; int age = 21; std::string result; fastformat::fmt(result, "{0}{1}", name, age);
4. Verwenden von FastFormat.Write:
#include <FastFormat.h> std::string name = "John"; int age = 21; std::string result; fastformat::write(result, name, age);
5. Verwenden der {fmt}-Bibliothek:
#include <fmt/format.h> std::string name = "John"; int age = 21; std::string result = fmt::format("{}{}", name, age);
6. Verwendung von IOStreams:
#include <iostream> #include <sstream> std::string name = "John"; int age = 21; std::stringstream sstm; sstm << name << age; std::string result = sstm.str();
7. Verwendung von itoa:
#include <cstdio> std::string name = "John"; int age = 21; char numstr[21]; // enough to hold all numbers up to 64-bits std::string result = name + itoa(age, numstr, 10);
8. Sprintf verwenden:
#include <cstdio> std::string name = "John"; int age = 21; char numstr[21]; // enough to hold all numbers up to 64-bits sprintf(numstr, "%d", age); std::string result = name + numstr;
9. Verwenden von STLSofts integer_to_string:
#include <stlsoft/integer_to_string.hpp> std::string name = "John"; int age = 21; char numstr[21]; // enough to hold all numbers up to 64-bits std::string result = name + stlsoft::integer_to_string(numstr, 21, age);
10. Verwenden von winstl::int_to_string():
#include <wintlsoft/int_to_string.h> std::string name = "John"; int age = 21; std::string result = name + winstl::int_to_string(age);
11 von STLSoft. Verwendung von Pocos NumberFormatter:
#include <Poco/NumberFormatter.h> std::string name = "John"; int age = 21; std::string result = name + Poco::NumberFormatter().format(age);
Die Leistungs-, Sicherheits- und Kompatibilitätsmerkmale jeder Methode werden detailliert beschrieben, um Ihnen bei der Auswahl des besten Ansatzes für Ihre spezifischen Anforderungen zu helfen.
Das obige ist der detaillierte Inhalt vonWie kann ich Strings und ganze Zahlen in C effizient verketten?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!