以二进制格式输出对象基本思路是直接将对象的内存数值以二进制的格式输出,但是如何获取对象内存的二进制结构 l P$r
是关键。解决方法是通过位操作找出对象内存的每一个bit的值。并把该方法封装成一个迭代器。 S`@6c$y k
要注意的问题是位操作符只能对整数类型进行操作,为了对所有类型的对象都有效,必须将对 &xBK\
象当作char数组来处理。 7}'A)C>J;
template<class Container> @9uYmkcV
class bit_iterator : public std::iterator<bidirectional_iterator_tag, 8S1P&+iKs
void, void> I51oG:6fR?
{ 5Hwo)S]r
public: ?#*
explicit bit_iterator(Container& c) : m_container(&c) ?wLdW1&PpX
{ \7t5U7v8U
m_size = 8*sizeof(Container); hk@`N;dn
m_index = 0; ^s2m\Q(
} vdH+>l
explicit bit_iterator() : m_container(0) 6/[Z178m
{ C'-zh\a
m_size = 8*sizeof(Container); NDRW
m_index = m_size; P^8^1-b
} &gA6+b'
bool operator* () vr{'FMc
{ %Ui{=920
char mask = 1; r*6"'W>c6
char* pc = (char*)m_container; *U;4t/(
int i = (m_size-m_index-1)/8; Gpdv]SON{
int off = (m_size-m_index-1)%8; kUn2RZ6$#
mask <<=off; qukjS#>+
return pc & mask; 6.U"_%
} NV}RRs
bit_iterator<Container>& operator++() 3tT|9Tb@
{ QN_)3lm
m_index++; (ve+,H6w\
return *this; 83KfM!w
} =PNdP
bit_iterator<Container>& operator++(int) {H=oxa
{ /7k.r}6\R
m_index++; Jo{zy
return *this; `E3:;|
} y$IaXr5L
bool operator==(bit_iterator<Container>& bitIt) ^uyN v-'F
{ C9<4~IM
w
return m_index == bitIt.m_index; {q&@nm40
} F2IC$:e
M
bool operator!=(bit_iterator<Container>& bitIt) 8To7c
{ |Du,UY/
return !(*this == bitIt); (jM<T;4
} 5oz>1
protected: m_Mwg
Container* m_container; b/}'Vf[
private: +w "XNl
int m_size; .aNO( /kO
int m_index; "_ LkZBW.
}; DVObrL)znL
0jBKCu
用该迭代器可以将任意类型对象以二进制格式输出: 9[z'/U.Bn
double a = 10; MWM
+hk1fs
copy(bit_iterator<double>(a), bit_iterator<double> (), ostream_iterator<bool>(cout, ""));