以二进制格式输出对象基本思路是直接将对象的内存数值以二进制的格式输出,但是如何获取对象内存的二进制结构 )|AxQPd
是关键。解决方法是通过位操作找出对象内存的每一个bit的值。并把该方法封装成一个迭代器。 S1m5z,G
要注意的问题是位操作符只能对整数类型进行操作,为了对所有类型的对象都有效,必须将对 ASr@5uFR
象当作char数组来处理。 AN|f:259
template<class Container> %L
wq.
class bit_iterator : public std::iterator<bidirectional_iterator_tag, 7u5H o`
void, void> 3f~znO
{ 2iOYC0`!
public: '#.D`9YI<
explicit bit_iterator(Container& c) : m_container(&c) tDfHO1pS
{ 475g-t2"@
m_size = 8*sizeof(Container); XD_!5+\H1
m_index = 0; h^''ue"
} W
)Ps2
explicit bit_iterator() : m_container(0) '*
/$66|
{ y7GgTC/H
m_size = 8*sizeof(Container); B?y[ %i
m_index = m_size; T7O)
} %=\*OIhl
bool operator* () e$JATA:j
{ oL<5hN*D
char mask = 1; _#{qDG=
char* pc = (char*)m_container; XdOntP *a
int i = (m_size-m_index-1)/8; WW!-,d{{@
int off = (m_size-m_index-1)%8; Mm9*$g!R
mask <<=off; XV`8Vb
return pc & mask; m|
7v76(
} oJ/=&c
bit_iterator<Container>& operator++() sBqOcy
{ 02T'B&&~
m_index++; , q{~lf-
return *this; IR;3{o
} *&R|0I{>
bit_iterator<Container>& operator++(int) V)ag ss w?
{ v$5D&Tv
m_index++; { 9\/aXPS
return *this; 2t45/:,
} .C ,dV7
bool operator==(bit_iterator<Container>& bitIt) b^P\Q s*m
{ #uICHt3
return m_index == bitIt.m_index; |B64%w>Y
} 036QV M$
bool operator!=(bit_iterator<Container>& bitIt) bqx2lQf,_
{ HEhBOER?
return !(*this == bitIt); ,]das
} _Vt(Eg_\
protected: I9`ZK2S
Container* m_container; Uty0mc(
private: t%f>*}*P*
int m_size; sb?!U"v.'
int m_index; Gm0}KU
}; A:pD:}fm}D
vGI)c&C>
用该迭代器可以将任意类型对象以二进制格式输出: K,*-Y)v2W
double a = 10; wqJl[~O$
copy(bit_iterator<double>(a), bit_iterator<double> (), ostream_iterator<bool>(cout, ""));