入門計劃->使用(C++庫)ostringstream輸出(格式化) (轉)

amyz發表於2007-11-10
入門計劃->使用(C++庫)ostringstream輸出(格式化) (轉)[@more@]

原創+收藏


//awzzz@2002 //計劃->使用(C++庫)ostringstream輸出(格式化) //APO->using ostringstream. //accnce project of using ostringstream.(c++ iostream library) /* Reference: Description ostringstream class provides an interface to manipulate strings as if they were output streams. The s of this class mantain internally a pointer to a stringbuf object that can be obtained/modified by calling member ruf. This streambuf-derived object stores a sequence of characters (string) that can be obtained/modified by calling member str. */ //使用(C++庫)ostringstream輸出(格式化) //simple example #include #include #include using namespace std; void test() { //ostringstream oss; //oss.str("abc"); ostringstream oss("abc"); cout << oss.str() << endl; oss << 8 << endl; oss << 3.14 << endl; oss << " ok ." << endl; cout << oss.str() << endl; oss << 8 << " " << 3.14 << " " << " ok ." << endl; cout << oss.str() << endl; } int main(int argc, char* argv[]) { test(); return 0; }


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-981607/,如需轉載,請註明出處,否則將追究法律責任。

相關文章