zoukankan      html  css  js  c++  java
  • 编译错误 error C2451: “std::_Unforced”类型的条件表达式是非法的

    part 1 

      编译器 vs2015 VC++。

      完整的错误信息粘贴如下:

    d:program files (x86)microsoft visual studio 14.0vcincludealgorithm(43): error C2451: “std::_Unforced”类型的条件表达式是非法的

      完整代码:

    struct Bigger {
        bool operator() (vector<string>::size_type lhs, vector<string>::size_type rhs) { // 第一个形参是型别是 Bug
            return lhs > rhs;
        }
    };
    
    void biggies(vector<string>& words, const vector<string>::size_type sz)
    {
        auto beg = words.begin();
        while (beg != words.end())
        {
            auto temp = 
                find_if(beg, words.end(), bind(Bigger(), placeholders::_1, sz));  // 这里引发的错误
            cout << *temp << " ";
            beg = ++temp;
        }
        cout << endl;
    }

      出处:《C++ primer 5th》习题 14.40。

    part 2 正文

      意图:

      调用函数对象 Bigger() 来处理 find_if() 算法遍历的两个参数,比较两者的大小关系。

      错误代码:

    struct Bigger {
        bool operator() (vector<string>::size_type lhs, vector<string>::size_type rhs) { // 第一个形参是型别是 Bug
            return lhs > rhs;
        }
    };

      错误原因:

      错误的地方在于 Bigger::operator() 的形参列表和 find_if() 的三个参数不符合。

    Bigger::operator() (vector<string>::size_type, vector<string>::size_type)

      与find_if()的第三个参数—— bind(Bigger(), placeholders::_1, sz) ——匹配的形参列表应该是:

    Bigger::operator() (const string&, vector<string>::size_type)

      如何改正:

    struct Bigger {
        bool operator() (const string& lhs, vector<string>::size_type rhs) {
            return lhs.size() > rhs;
        }
    };

      第一个参数改写成 const string& 型别。

    (全文完)

  • 相关阅读:
    地图校正方法心得
    投影的心得点滴
    android 打包 apk keystore
    scp命令详解
    ubuntu11.10真机调试nopermissions
    android adb server is out of date
    ubuntu删除默认jdk
    android 运行 错误 总结
    android file .apk is not a valid zip file adb install
    ubuntu系统目录结构
  • 原文地址:https://www.cnblogs.com/fengyubo/p/4876084.html
Copyright © 2011-2022 走看看