Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Wie kann ich eine Variable t zu einem string umwandeln?????

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
27.03.2005, 14:47 Uhr
~String
Gast


Hi,

wie kann ich eine Variable t zu einem string umwandeln?????
Also hiermit geht es ja nicht:


C++:
...
int a;
string b;
string zusammen;

strcpy(b, a);
zusammen= a + b;




Frohe Ostern noch und schon vielen Dank im vorraus!!!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
27.03.2005, 14:48 Uhr
~String
Gast


Meinte die Variable a in string b schreiben!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
27.03.2005, 14:59 Uhr
Oliver
S2-Pixelgeneral



C++:
stringstream ss;

ss<<a;
b=ss.str();


--
Demokratie ist die Diktatur der Mehrheit.

www.siedler25.org/ ( Siedler2 - Remake )

Dieser Post wurde am 27.03.2005 um 15:01 Uhr von Oliver editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
27.03.2005, 15:54 Uhr
Pablo
Supertux
(Operator)


1. ich empfehle dir ein C/C++ zu nehmen
Variablen in strings umzuwandeln hängt vom Datentyp ab. Eine gute Funktion ist sprintf(3)

Siehe strcpy(3), strcpy erwartet ein const char* als 2. Parameter, kein int. Als erstes ein char*, kein std::string.
--
A! Elbereth Gilthoniel!
silivren penna míriel
o menel aglar elenath,
Gilthoniel, A! Elbereth!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
27.03.2005, 16:22 Uhr
0xdeadbeef
Gott
(Operator)


In C++:

C++:
#include <sstream>
#include <string>

using namespace std;

// ...

int a = 123;
stringstream sstr;
string s;

sstr << a;
s = sstr.str();


In C:

C++:
#include <stdio.h>

int a = 123;
char buf[20]; // oder halt ne andere bufferlänge

snprintf(buf, 20, "%d", a);


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
03.04.2005, 12:43 Uhr
~BorisDieKlinge
Gast


such mal nach "itoa"
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
006
03.04.2005, 12:44 Uhr
Pablo
Supertux
(Operator)


itoa ist nicht ANSI C/C++
--
A! Elbereth Gilthoniel!
silivren penna míriel
o menel aglar elenath,
Gilthoniel, A! Elbereth!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: