002
27.04.2004, 20:44 Uhr
kaihua
|
C++: |
#include <iostream> #include <string> using namespace std;
int main() {
string one; string two;
cout<<"Please enter a string: "; getline(cin, one); cout<<one<<endl;
two = "12345678"; cout<<two<<endl;
unsigned int max_size = string::npos;
cout<<max_size<<endl;
return 0; }
|
ich habe das auch im Buch <<C++ Primer Plus>> Seite 780 gelesen. Zitiert: The class defines string::npos as the maximum possible length of the string. Typically, this would equal the maximum value of an unsigned int.
Aber ich weiß nicht, ob das bedeutet, das MaximumGröß die Eigenschaft der Sprach ist, d.h maschineunabhängig und compilerunabhängig, oder doch etwas abhängig. |