0
像下面接受輸入,如何在編輯輸入後編輯用戶看到的輸入內容?
char ch = getch();
while(ch != '\r') {
if(ch == '\b') {
// do **something** here to remove the previous character from the stream
} else {
cout << ch;
}
}
我理解的流是用於插入和提取數據。
這是否意味着一旦一些數據被髮布到流中就會變得不可變?