当前位置: 首页>>代码示例>>C++>>正文


C++ ListIterator::current_name方法代码示例

本文整理汇总了C++中ListIterator::current_name方法的典型用法代码示例。如果您正苦于以下问题:C++ ListIterator::current_name方法的具体用法?C++ ListIterator::current_name怎么用?C++ ListIterator::current_name使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ListIterator的用法示例。


在下文中一共展示了ListIterator::current_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: obj

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
bool
SuifPrinterModule::print_stl(ostream& output, 
			     const ObjectWrapper &obj,
			     const LString &name, int _indent,int deref = 0)
{
  const Address what = obj.get_address();
  const MetaClass* type = obj.get_meta_class();
   int field_deref = deref?deref-1:0;
   output << type->get_instance_name()
              << '(' << type->get_meta_class_id() << ") ";
   if (name)
         output << ' ' << name << ' ';
   STLMetaClass *p = (STLMetaClass*) type;
   ListIterator* it = (ListIterator*) p->get_iterator(what);
   output << '[' << it->length() << "] ";
   if (it->current()) {
          //output << "{\n";
          output << endl;
          //while (it->is_valid()) {
	  for (; it->is_valid(); it->next())
	    {
	      ObjectWrapper obj(it->current(), it->current_meta_class());
	      //               const MetaClass* currentMetaClass = it->current_meta_class();
	      //               const Address curAddr = it->current();
               if (!obj.is_null()) {
                  indent(output, _indent+istep);
                  print2(output, obj, it->current_name(),
                         _indent+istep, field_deref);
                }
	       //it->next();
	    }
          //}
	  //          } while (it->is_valid());
          indent(output, _indent);
          //output << "}\n";
   }
   else
          output <<" {0x0}\n";
   delete it;
   return true;
}
开发者ID:jrk,项目名称:suif2,代码行数:43,代码来源:suifprinter.cpp


注:本文中的ListIterator::current_name方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。