string::operator>>
在 Visual C++ 演示如何使用 字符串:: operatorAMP_GTAMP_GT 标准 (STL)模板库函数。
template<class E, class TYPE, class A> inline
basic_istream<E, TYPE>&
operator>>(basic_istream<E, TYPE>& InStream,
basic_string<E, TYPE, A>& String);
备注
说明 |
---|
类/参数名在原型不匹配版本在头文件。修改某些提高可读性。 |
operatorAMP_GTAMP_GT 用于填充输入流的目录的字符串。
安全说明 |
---|
此运算符复制从输入源的数据给变量。如果输入尚未验证,则可能导致缓冲区溢出。有关更多信息,请参见 避免缓冲区溢出。 |
示例
// string_operator_extract_sample.cpp
// compile with: /EHsc
//
// Illustrates how to use the operator>> to extract
// a string from an input stream, populating a string
// variable with the contents.
//
// Functions:
//
// operator>> Extracts a string from an input stream.
//////////////////////////////////////////////////////////////////////
#pragma warning(disable:4786)
#include <string>
#include <iostream>
using namespace std ;
int main()
{
string s1;
cout << "Enter a word: ";
cin >> s1;
cout << "You entered: " << s1 << endl;
}
testtestEnter
运行:测试 您输入的内容:测试
要求
标题: string