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


C++ NameMap::addName方法代码示例

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


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

示例1: readHeader

void ArffParser::readHeader( ifstream& in, NameMap& classMap,
                             vector<NameMap>& enumMaps, NameMap& attributeNameMap,
                             vector<RawData::eAttributeType>& attributeTypes )
{
    bool isData = false;
    string tmpStr;
    string tmpAttrType;

    locale labelsLocale = locale(locale(), new nor_utils::white_spaces("{,}"));

    while ( !isData )
    {
        switch ( getNextTokenType(in) )
        {
        case TT_DATA:
            isData = true;
            break;

        case TT_COMMENT:
            getline(in, tmpStr); // ignore line
            break;

        case TT_RELATION:
            in >> _headerFileName;
            break;

        case TT_ATTRIBUTE:
            in >> tmpStr;

            if ( nor_utils::cmp_nocase(tmpStr, "class") )
            {
                // It's a class!!
                char firstChar = 0;
                while ( isspace(firstChar = in.get()) && !in.eof() );
                in.putback(firstChar);

                getline(in, tmpStr);
                stringstream ss(tmpStr);
                ss.imbue(labelsLocale);

                // read the classes
                for (;;)
                {
                    ss >> tmpStr;
                    if ( ss.eof() )
                        break;
                    tmpStr = nor_utils::trim(tmpStr);
                    if (!tmpStr.empty())
                        classMap.addName(tmpStr);
                }
                in.putback( '\n' );
            }
            else if ( nor_utils::cmp_nocase(tmpStr.substr(0,5), "class") )
            {
                classMap.addName(tmpStr.substr(5));
                _hasAttributeClassForm = true;
            }
            else
            {
                NameMap enumMap;
                in >> tmpAttrType;
                if ( nor_utils::cmp_nocase(tmpAttrType, "numeric") ||
                        nor_utils::cmp_nocase(tmpAttrType, "real") ||
                        nor_utils::cmp_nocase(tmpAttrType, "integer") )
                {
                    attributeNameMap.addName(tmpStr);
                    attributeTypes.push_back(RawData::ATTRIBUTE_NUMERIC);
                }
                else if ( nor_utils::cmp_nocase(tmpAttrType, "string") )
                {
                    if (attributeNameMap.getNumNames() == 0)
                        _hasName = true;
                    else
                    {
                        cerr << "ERROR: One can specify the name of an example only as the first attribute, otherwise string types are not supported!!" << endl;
                        exit(1);
                    }
                }
                else
                {
                    // enum attributeTypes
                    // For the time being the enumeration cannot contain spaces, we should
                    // correct it.
                    if (tmpAttrType[0] == '{')
                    {
                        attributeNameMap.addName(tmpStr);
                        attributeTypes.push_back(RawData::ATTRIBUTE_ENUM);
                        stringstream ss(tmpAttrType);
                        ss.imbue(labelsLocale);

                        for (;;)
                        {
                            ss >> tmpAttrType;
                            if ( ss.eof() )
                                break;
                            tmpAttrType = nor_utils::trim(tmpAttrType);
                            if (!tmpAttrType.empty())
                                enumMap.addName(tmpAttrType);
                        }
                    }
//.........这里部分代码省略.........
开发者ID:junjiek,项目名称:cmu-exp,代码行数:101,代码来源:ArffParser.cpp


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