string::getline
Znázorňuje použití string::getline standardní šablonu knihovny (STL) třídy v jazyce C++.
template<class _E, class _TYPE, class _A> inline
basic_istream<_E, _TYPE>& getline(
basic_istream<_E, _TYPE>& Istream,
basic_string<_E, _TYPE, _A>& Xstring,
const _E _D=_TYPE::newline( )
);
Poznámky
[!POZNÁMKA]
Názvy tříd/parametr v prototyp verze v záhlaví souboru neodpovídají.Některé byly upraveny, aby se zlepšila čitelnost.
Getline funkce vytvoří řetězec obsahující všechny znaky z vstupní proud, dokud se nastane jedna z následujících situací:-konec souboru.-Oddělovač je zjištěn.- is. max_str prvky byly extrahovány.
Příklad
// string_getline_sample.cpp
// compile with: /EHsc
// Illustrates how to use the getline function to read a
// line of text from the keyboard.
//
// Functions:
//
// getline Returns a string from the input stream.
//////////////////////////////////////////////////////////////////////
#pragma warning(disable:4786)
#include <string>
#include <iostream>
using namespace std ;
int main()
{
string s1;
cout << "Enter a sentence (use <space> as the delimiter): ";
getline(cin,s1, ' ');
cout << "You entered: " << s1 << endl;;
}
Tento test
otestovat zadejte větu (použijte <space> jako oddělovač): Tento test Zadali jste: test
Požadavky
Záhlaví: <string>