Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » FAQ C / C++ (ANSI-Standard) » Umwandlungen

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
18.10.2005, 12:44 Uhr
virtual
Sexiest Bit alive
(Operator)


Hallo,

Wenn man das Problem hat, etwas von Typ X anch Y umzuwandeln, kann man ein nettes Template schreiben:

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

template< typename TO, typename FROM >
TO lexi_cast(
        const FROM& from) {

        std::stringstream s;
        s<<from;
        TO to;
        s>>to;
        return to;
}


int main() {
        const char* str = "3.14159265";
        std::cout<<str<<" als int: "<<lexi_cast<int>(str)<<std::endl;
        std::cout<<str<<" als double: "<<lexi_cast<double>(str)<<std::endl;
        std::cout<<str<<" als std::string: "<<lexi_cast<std::string>(str)<<std::endl;
}


Ist zwar nicht komplett die eierlegende Wollmichsau, aber - sieht man von der Performance ab, für alle Typen anwendbar, welche eine Stringrepräsentation haben.
--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
18.10.2005, 13:43 Uhr
(un)wissender
Niveauwart


Jo, hat was.
--
Wer früher stirbt ist länger tot.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
18.10.2005, 17:24 Uhr
Pablo
Supertux
(Operator)


Ich verschied mal in die FAQ.
--
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 <     [ FAQ 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: