怎么让C++ ifstream在逐字符读取时不忽略空格\t\n?
1个回答
展开全部
cin::get getline read readsome系列可以读入\t\n,但是你会失去格式化功能.
所以下面是解决你这个问题的最简单的方法.
#include <string>
#include <iostream>
using namespace std;
class ctype_with_filter : public ctype<char>
{
public:
ctype_with_filter( const string& str ):ctype<char>( gen_table( str ), true ) { }
private:
static ctype_base::mask* gen_table( const string& str )
{
typedef ctype_base::mask mask ;
const size_t sz = ctype<char>::table_size ;
mask* tb = new mask[sz]() ;
memcpy( tb, ctype<char>::classic_table(), sz * sizeof( short ) ) ;
for( size_t i = 0 ; i < str.size() ; ++i )
tb[str[i]] = ctype_base::graph ;
return tb ;
}
} ;
inline locale install_filter( istream& is, string str )
{
static ctype_with_filter filter( str ) ;
locale loc( locale(), &filter ) ;// 注意,这里是静态变量的地址,所以要重复调用本函数,请使用new
return is.imbue( loc ) ;
}
int main()
{
locale loc = install_filter( cin ,"\t\n" ) ; \\ 安装,将\t \n作为普通字符对待.
string str ;
cin >> str ; \\ 最后输入空格,再回车,把控制返回给程序.
cin.imbue( loc ) ; // 恢复cin
}
把cin换成ifstream 对象就OK了
所以下面是解决你这个问题的最简单的方法.
#include <string>
#include <iostream>
using namespace std;
class ctype_with_filter : public ctype<char>
{
public:
ctype_with_filter( const string& str ):ctype<char>( gen_table( str ), true ) { }
private:
static ctype_base::mask* gen_table( const string& str )
{
typedef ctype_base::mask mask ;
const size_t sz = ctype<char>::table_size ;
mask* tb = new mask[sz]() ;
memcpy( tb, ctype<char>::classic_table(), sz * sizeof( short ) ) ;
for( size_t i = 0 ; i < str.size() ; ++i )
tb[str[i]] = ctype_base::graph ;
return tb ;
}
} ;
inline locale install_filter( istream& is, string str )
{
static ctype_with_filter filter( str ) ;
locale loc( locale(), &filter ) ;// 注意,这里是静态变量的地址,所以要重复调用本函数,请使用new
return is.imbue( loc ) ;
}
int main()
{
locale loc = install_filter( cin ,"\t\n" ) ; \\ 安装,将\t \n作为普通字符对待.
string str ;
cin >> str ; \\ 最后输入空格,再回车,把控制返回给程序.
cin.imbue( loc ) ; // 恢复cin
}
把cin换成ifstream 对象就OK了
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询