stringstream的基本用法

2021-08-19 18:49:46 字數 545 閱讀 1817

1.

#include

#include

using

namespace

std;

int main()

輸入:shanghai no1 school 1989

輸出:shanghi no1 school 1989

shanghai

no1

school

1989

#include

#include

using

namespace

std;

int main()

輸出為:val1: 512

val2: 1024

512 1024

第一處黑體字部分:將int型別讀入ss,變為string型別

第二處黑體字部分:提取512,1024儲存為int型別。當然,如果a,b宣告為string型別,那麼這兩個字面值常量相應儲存為string型別

stringstream的基本用法

stringstream是字串流。它將流與儲存在記憶體中的string物件繫結起來。在多種資料型別之間實現自動格式化。1 stringstream物件的使用 include includeusing namespace std int main string line,word while getl...

stringstream的基本用法

stringstream是字串流。它將流與儲存在記憶體中的string物件繫結起來。在多種資料型別之間實現自動格式化。1 stringstream物件的使用 include include using namespace std intmain return0 輸入 shanghai no1 sch...

stringstream的基本用法

stringstream是字串流。1 stringstream物件的使用 按空格分割 include includeusing namespace std int main string line,word while getline cin,line stringstream stream lin...