由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个关于cin的问题
相关主题
New C++ programmer, need to ask a I/O file read question[合集] 关于template和inheritance的问题请教
C++ string to int Problem[合集] 又被羞辱了一把... (转载)
问个C/C++题目Default function template arguments
问个g++的问题C++ template problem
问个c++的template的问题一个C++ template的问题
也问个template 的问题(C++)C++ Q73: template (skillport) (转载)
问个C++ TEMPLATE 的问题C++ Q90 - Q92 (转载)
a c++ question for templateC++ Q88: nested non-template class (转载)
相关话题的讨论汇总
话题: cin话题: line话题: template话题: while话题: int
进入Programming版参与讨论
1 (共1页)
c******u
发帖数: 19
1
我想实现类似
while (cin>>i)
{
a.push_back(i);
}
怎么在用户回车的时候就终止循环呢?
譬如i是int
如果i是template class呢?
谢谢
y****i
发帖数: 156
2
string line;
while(true) {
getline(cin, line);
if(line == "")
break;

int i = atoi(line.c_str());
a.push_back(i);
}
t****t
发帖数: 6806
3
use istringstream with template.

【在 y****i 的大作中提到】
: string line;
: while(true) {
: getline(cin, line);
: if(line == "")
: break;
:
: int i = atoi(line.c_str());
: a.push_back(i);
: }

c******u
发帖数: 19
4
can you give an example? Thx

【在 t****t 的大作中提到】
: use istringstream with template.
1 (共1页)
进入Programming版参与讨论
相关主题
C++ Q88: nested non-template class (转载)问个c++的template的问题
C++ templates也问个template 的问题(C++)
iOS UI template with OC or Swift source code问个C++ TEMPLATE 的问题
读取数据求教a c++ question for template
New C++ programmer, need to ask a I/O file read question[合集] 关于template和inheritance的问题请教
C++ string to int Problem[合集] 又被羞辱了一把... (转载)
问个C/C++题目Default function template arguments
问个g++的问题C++ template problem
相关话题的讨论汇总
话题: cin话题: line话题: template话题: while话题: int