社区应用 最新帖子 精华区 社区服务 会员列表 统计排行 社区论坛任务 迷你宠物
  • 2858阅读
  • 0回复

以二进制格式输出对象

级别: 终身会员
发帖
3743
铜板
8
人品值
493
贡献值
9
交易币
0
好评度
3746
信誉值
0
金币
0
所在楼道
以二进制格式输出对象基本思路是直接将对象的内存数值以二进制的格式输出,但是如何获取对象内存的二进制结构 t[yD8h  
是关键。解决方法是通过位操作找出对象内存的每一个bit的值。并把该方法封装成一个迭代器。 'N5r2JL[w  
要注意的问题是位操作符只能对整数类型进行操作,为了对所有类型的对象都有效,必须将对 '/qe#S  
象当作char数组来处理。 ]!Aze^7;  
template<class Container> OD@A+"  
class bit_iterator : public std::iterator<bidirectional_iterator_tag, RKJWLofX&  
void, void> kc(b;EA  
{ Ud(dWj-/  
public: rM~IF+f0XD  
explicit bit_iterator(Container& c) : m_container(&c) @LMV?  
{ 96V, [-arf  
m_size = 8*sizeof(Container); n,'AFb4AF  
m_index = 0; :tDGNz*zG  
} Ywb)h^{!  
explicit bit_iterator() : m_container(0) :V1ZeNw  
{ D '_#?%3^  
m_size = 8*sizeof(Container); 2iINQK$  
m_index = m_size; j9fL0$+FI  
} c94PWPU  
bool operator* () ez9M]! 8Lt  
{ $gtT5{"PN(  
char mask = 1; S5 oHe4#89  
char* pc = (char*)m_container;  D)eKq!_  
int i   = (m_size-m_index-1)/8; 7Qztc?XK  
int off   = (m_size-m_index-1)%8; =,;3z/k%  
mask <<=off; 0`Qs=R`OM  
return pc & mask; DG9;6"HBX  
} ba1QFzN  
bit_iterator<Container>& operator++() O9IjU10:  
{ 'GO..m"G  
m_index++; ~SUl,Cs  
return *this; 2F(\}%UT~  
} aRKG)0=  
bit_iterator<Container>& operator++(int) U"G+su->e  
{ !8M'ms>s=  
m_index++; [5:7 WqB  
return *this; c{P`oB8  
} MX_a]$\ :n  
bool operator==(bit_iterator<Container>& bitIt) &otgN<H9  
{ bg. KkJMrR  
return m_index == bitIt.m_index; .F|WQ7Mu  
} cuk}VZ  
bool operator!=(bit_iterator<Container>& bitIt) 3&2q\]Y,  
{ nvs7s0@Fqe  
return !(*this == bitIt); z Ns8\  
} xeh|u"5  
protected: ~ZC=!|Q#  
Container* m_container; 3c6)  
private: \kO_"{7n  
int m_size; "Y0[rSz,UW  
int m_index; _n gMC]-T  
}; ikiy>W8  
b=l}|)a  
用该迭代器可以将任意类型对象以二进制格式输出: aE$p;I  
double a = 10; bGa":|}F  
copy(bit_iterator<double>(a), bit_iterator<double> (), ostream_iterator<bool>(cout, ""));
评价一下你浏览此帖子的感受

精彩

感动

搞笑

开心

愤怒

无聊

灌水
描述
快速回复

您目前还是游客,请 登录注册
欢迎提供真实交流,考虑发帖者的感受
认证码:
验证问题:
3+5=?,请输入中文答案:八 正确答案:八