std::ostreambuf_iterator::ostreambuf_iterator

Da cppreference.com.

 
 
Biblioteca Iterator
Primitive iteratori
Original:
Iterator primitives
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iterator_traits
input_iterator_tag
output_iterator_tag
forward_iterator_tag
bidirectional_iterator_tag
random_access_iterator_tag
iterator
Adattatori iteratori
Original:
Iterator adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
reverse_iterator
Flusso iteratori
Original:
Stream iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
istream_iterator
ostream_iterator
istreambuf_iterator
ostreambuf_iterator
Operazioni di iteratori
Original:
Iterator operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
advance
distance
prev(C++11)
next(C++11)
Intervallo accesso
Original:
Range access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
begin(C++11)
end(C++11)
 
std::ostreambuf_iterator
Membri funzioni
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ostreambuf_iterator::ostreambuf_iterator
ostreambuf_iterator::operator=
ostreambuf_iterator::operator*
ostreambuf_iterator::operator++
ostreambuf_iterator::operator++(int)
ostreambuf_iterator::failed
 
ostreambuf_iterator(streambuf_type* buffer)
(1)
ostreambuf_iterator(ostream_type& stream)
(2)
1)
Costruisce l'iteratore con il set di membro privato streambuf_type* a buffer e il fallito () bit impostato a false. Il comportamento è indefinito se buffer è un puntatore nullo.
Original:
Constructs the iterator with the private streambuf_type* member set to buffer and the failed() bit set to false. The behavior is undefined if buffer is a null pointer.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Come ostreambuf_iterator(stream.rdbuf())
Original:
Same as ostreambuf_iterator(stream.rdbuf())
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifica]Parametri

stream -
il flusso di output il cui rdbuf () sarà accessibile da questo iteratore
Original:
the output stream whose rdbuf() will be accessed by this iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
buffer -
il buffer di flusso di output per essere accessibile da questo iteratore
Original:
the output stream buffer to be accessed by this iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifica]Eccezioni

noexcept specification:  
noexcept
  (dal C++11)

[modifica]Esempio

#include <iostream>#include <fstream>#include <iterator>int main(){std::basic_filebuf<char> f; f.open("test.txt", std::ios::out);   std::ostreambuf_iterator<char> out1(&f);   std::ostreambuf_iterator<wchar_t> out2(std::wcout);   *out1 ='a';*out2 = L'a';}


close