Pourquoi je ne peux pas cout
string
aimer ça:
string text ;
text = WordList[i].substr(0,20) ;
cout << "String is : " << text << endl ;
Lorsque je fais cela, j'obtiens l'erreur suivante:
Erreur 2 erreur C2679: binaire '<<': aucun opérateur trouvé qui prend un opérande de droite de type 'std :: string' (ou il n'y a pas de conversion acceptable) c: \ users \ mollasadra \ documents \ visual studio 2008 \ projets \ barnamec \ barnamec \ barnamec.cpp 67 barnamec **
C'est incroyable, que même cela ne fonctionne pas:
string text ;
text = "hello" ;
cout << "String is : " << text << endl ;
#include <iostream>
?