使用STL算法的本地类

我一直想知道为什么你不能使用本地定义的类作为STL算法的谓词。


在问题:接近STL算法,lambda,本地类和其他方法,BubbaT提到“ 由于C ++标准禁止将本地类型用作参数 ”


示例代码:


int main() {

   int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };

   std::vector<int> v( array, array+10 );


   struct even : public std::unary_function<int,bool>

   {

      bool operator()( int x ) { return !( x % 2 ); }

   };

   std::remove_if( v.begin(), v.end(), even() ); // error

}

有谁知道标准中的限制在哪里?禁止当地类型的理由是什么?


编辑:从C ++ 11开始,使用本地类型作为模板参数是合法的。


眼眸繁星
浏览 334回答 2
2回答

慕田峪7331174

限制将在'0x中删除,但我认为你不会非常使用它们。那是因为C ++ - 0x会有lambda!:)int main() {&nbsp; &nbsp;int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };&nbsp; &nbsp;std::vector<int> v( array, array+10 );&nbsp; &nbsp;std::remove_if( v.begin()&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;, v.end()&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;, [] (int x) -> bool { return !(x%2); })}我在上面的语法可能并不完美,但总体思路就在那里。
打开App,查看更多内容
随时随地看视频慕课网APP