Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Komisches "Hello World"

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
16.07.2004, 16:43 Uhr
RedEagle




C++:
####linux_hallo.cpp //was soll/macht/ist das???
#include <iostream>
using std::cout;  //== using namespace std; ???
using std::endl;

int main()
{
cout << "hallo linux!" << endl;
return 0;
}


--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
16.07.2004, 18:07 Uhr
~Ponto
Gast



C++:
####linux_hallo.cpp //was soll/macht/ist das???


ist nichts gültiges. Es sollte gelöscht werden, damit das kompiliert.


C++:
using std::cout;  //== using namespace std; ???
using std::endl;



Das sind zwei using-declarations, die sozusagen Aliase für std::cout und std::endl im globalen namespace erzeugen. Anders ist


C++:
using namespace std;



eine using-directive, die alle Elemente des namespaces verfügbar macht. Da die beiden using-declarations nur zwei Namen in den aktuellen namespace einführen, sind sie weniger invasiv und der using-directive vorzuziehen. Wenn jedoch sehr viele Namen benutzt werden, sind using-directives komfortabler.

Ponto
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
16.07.2004, 21:14 Uhr
RedEagle



ok

--
MFG RedEagle
 
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: