84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
using namespace std;int main(){
ostringstream ostr("abcd"); ostr.put('1'); cout<<ostr.str(); cout<<endl; ostr<<"hi"; ostr.put('56'); ///这边为何不是输出1bc56 而是1bc6? cout<<ostr.str();
}
认证高级PHP讲师
Le paramètre d'opération
de l'objet ostringstreamput est de type char. Référence
ostringstream
put
char
Essentiellement équivalent à put((char)'56')
put((char)'56')
Le paramètre d'opération
de l'objet
ostringstream
put
est de typechar
. RéférenceEssentiellement équivalent à
put((char)'56')