2012-01-20 70 views
1

在我的C++項目中,我試圖做到這一點:ostringstream是一個未定義的類型?

std::ostringstream stream(std::ostringstream::out); 

但我發現了一個錯誤:

error C2027: use of undefined type 'std::basic_ostringstream<_Elem,_Traits,_Alloc>' 

我已經包括的iostream和ostream的圖書館,所以我不確定爲什麼它被視爲未定義的ostringstream ...

+4

#include Mahesh

回答

7

std::ostringstream定義在<sstream><iostream>只包含前向聲明,<ostream>根本沒有幫助。

相關問題