我有一个程序应该模拟一个简单的文件系统,我想打印目录的结构,所以我重载了<<
运算符,并调用了另一个函数,该函数在 retursion 中遍历了我的结构。它有效,但是在输出中的某些行之前有一些奇怪的十六进制值。我操纵 iwth 的方式有问题ostream
吗?(我没有包括类定义,但没关系)
谢谢大家,任何答案!
std::ostream& printTree(std::ostream& os, const CFileSystem::TDir* x, int nmbTabs)
{
int k;
const CFileSystem::TDir * nxt = x;
//cout << pocetTabu<<endl;
while(nxt){
os<<"--";
for(k=0;k<nmbTabs;k++){
os << '\t' ;
}
os<<"--";
os << nxt->m_Name << endl;
if(nxt->m_Sub){
os << printTree(os,nxt->m_Sub,nmbTabs+1);
}
nxt=nxt->m_Next;
}
return os;
}
std::ostream& operator <<(std::ostream& os, const CFileSystem& x)
{
os << "/" << endl;
os << printTree(os, x.m_Root,1);
return ( os );
}