Привет всем! Помогите разобраться с remove_if для списка. Как определить свою ф-цию, которая выполняла то что делает прога текст которой приведен в приложении (он взят из MSDN). Но хотя результат вроде выдается правильный работает он не правильно, поскольку переопределенный оператор () класса is_four_chars вобще нигде не выполняется, а выполняется оператор определенный в классе not_equal_to<string>, т.е. проверяется условие !=. Можно ли как-то создать свою функцию, которая и будет определять параметры элемента списка, например, как в этом примере. Всем спасибо за ответы.
Видимо когда мой вопрос перекидывали из другой темы потеряли ссылку. Вот текст из MSDN Код (Text): include <list> #include <string> #include <iostream> using namespace std; #if _MSC_VER > 1020 // if later than revision 4.2 using namespace std; // std c++ libs are implemented in std #endif typedef list<string, allocator<string> > LISTSTR; // Used to customize list::remove_if() class is_four_chars : public not_equal_to<string> { bool operator()(const string& rhs, const string&) const { return rhs.size() == 4; } }; void main() { LISTSTR test; LISTSTR::iterator i; test.push_back("good"); test.push_back("bad"); test.push_back("ugly"); // good bad ugly for (i = test.begin(); i != test.end(); ++i) cout << *i << " "; cout << endl; test.remove("bad"); // good ugly for (i = test.begin(); i != test.end(); ++i) cout << *i << " "; cout << endl; // remove any not equal to "good" test.remove_if(binder2nd<not_equal_to<string> > (not_equal_to<string>(), "good")); // good for (i = test.begin(); i != test.end(); ++i) cout << *i << " "; cout << endl; // Remove any strings that are four characters long test.remove_if(binder2nd<not_equal_to<string> > (is_four_chars(), "useless parameter")); if (test.empty()) cout << "Empty list\n"; }
У меня ничего правильного код не выдал Поэтому! Код (Text): class is_four_chars : public unary_function<string, bool> { public: bool operator()(const string& str) const { return str.size() == 4; } }; // // ... // test.remove_if(is_four_chars());
Ваш код у меня тоже выдает ошибку: error C2664: 'remove_if' : cannot convert parameter 1 from 'class is_four_chars' to 'class std::binder2nd<struct std::not_equal_to<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > >' А вот код из MSDN компилится правильно, но работает не правильно. Спасибо за ответ.
Почитайте мой код внимательнее, особенно последнюю его строчку. Кроме реализации класса is_four_chars, поменялся вызов метода remove_if. В вызове не применяется binder2nd. Вот полный код. Компилируется и правильно работает в MSVS 2005. Код (Text): #include <list> #include <string> #include <iostream> using namespace std; class is_four_chars : public unary_function<string, bool> { public: bool operator()(const string& str) const { return str.size() == 4; } }; void main() { typedef list<string> string_list; string_list test; string_list::iterator it; test.push_back("good"); test.push_back("bad"); test.push_back("ugly"); test.remove_if(is_four_chars()); for (it = test.begin(); it != test.end(); ++it) cout << *it << " "; cout << endl; }
У меня VC6 и при компиляции вашего кода выдается ошибка error C2664: 'remove_if' : cannot convert parameter 1 from 'class is_four_chars' to 'class std::binder2nd<struct std::not_equal_to<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > >' С чем это может быть связано?
не понимаю откуда берутся std::binder2nd и std::not_equal_to в ошибке. Мы ведь не используем их. Правда?
Видимо на VC6+sp5 глючит библиотека STL. Хотя ВАШ код проверял на разных машинах с VC6. На VC2005 и gcc под Винды все работает. А у вас какой компилер?
У меня VC2005. C VC6 не работал, я в С++ новичок. На такие вопросы обычно быстро и качественно отвечают на форуме RSDN.ru, там много опытных С++ программистов.