473,603 Members | 2,603 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

bind2nd question

Shouldn't this compile?
#include <vector>
#include <algorithm>
#include <functional>
int main()
{
using namespace std;

vector<int> vec(1000, 10);
vector<int>::it erator p= find( vec.begin(), vec.end(),
bind2nd(less<in t>(), 11) );
}


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #1
4 2635
Ioannis Vranos wrote:
Shouldn't this compile?
#include <vector>
#include <algorithm>
#include <functional>
int main()
{
using namespace std;

vector<int> vec(1000, 10);
vector<int>::it erator p= find( vec.begin(), vec.end(),
bind2nd(less<in t>(), 11) );
}

You want to use std::find_if() instead of std::find(). The third paramater to std::find() is
expected to be the value you're looking for, where as std::find_if()' s third paramater is a binary
predicate.
Jul 23 '05 #2
Kurt Stutsman wrote:
Ioannis Vranos wrote:
Shouldn't this compile?
#include <vector>
#include <algorithm>
#include <functional>
int main()
{
using namespace std;

vector<int> vec(1000, 10);
vector<int>::it erator p= find( vec.begin(), vec.end(),
bind2nd(less<in t>(), 11) );
}

You want to use std::find_if() instead of std::find(). The third
paramater to std::find() is expected to be the value you're looking for,
where as std::find_if()' s third paramater is a binary predicate.

Make that a Unary Predicate not a Binary Predicate. Sorry.
Jul 23 '05 #3
You are using a predicate, you need to use find_if rather than find.

--
Imanpreet Singh Arora

Jul 23 '05 #4
Ioannis Vranos wrote:
Shouldn't this compile?
No.
vector<int>::it erator p= find( vec.begin(), vec.end(),
bind2nd(less<in t>(), 11) );


std::find looks for a particular value. To use a predicate, you want to
call std::find_if.

--
Later,
Jerry.

The universe is a figment of its own imagination.

Jul 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3374
by: red floyd | last post by:
Both gcc 3.3.1 and MSVC 7.1 complain about the second for_each() call in the following code. Why can't I use bind2nd for a functor with a non-const reference as the second parameter? I have to use kludge it by using something like KludgeFunctor(). --------------------------- #include <vector> #include <algorithm> #include <functional>
3
1930
by: John Black | last post by:
Hi, I have some code like this, itr = find_if(this->pool.begin(), this->pool.end(), bind2nd(mem_fun_ref(&Pool::isAvailable), make_pair(base, high))); But compiler always complains a lot STL template instantiation errors. My class definition is like this,
3
2665
by: ES Kim | last post by:
Here's a simple code: #include <vector> #include <algorithm> #include <functional> using namespace std; struct S { void f(int) const { }
2
1512
by: flyaflya | last post by:
i use a class static member function to for_each: class t1 { static test(string s); } main() { list<string> slist; ...
4
4896
by: dzikus | last post by:
Why the following code does not compile? If I change the function argument to value (not reference) everything is ok. Is it possible to modify such code that it will compile with reference argument type? Best regards Dominik #include <string> #include <list> #include <algorithm>
1
3028
by: PS | last post by:
Hi, I wrote the following code to try using bind2nd. It compiles and works fine with g++ but a Sun compiler tells me : "test_bind2nd.cpp", line 21: Error: Cannot cast from std::binder2nd<std::greater<int>> to bool(*)(const int&). Could you tell me if there's something wrong with the code itself? Thanks, PS
8
4490
by: Noah Roberts | last post by:
#include <vector> #include <algorithm> #include <functional> class X { int x; public: X(int i) : x(i) {} bool eq(const X & other) const { return x == other.x; }
2
483
by: benben | last post by:
I wrote the following lines: #include <locale> #include <functional> #include <algorithm> int main() { using namespace std; bind2nd(ptr_fun(tolower<char>), locale());
3
1808
by: Bruintje Beer | last post by:
Hi, I am having the following question (see code below) the class Data is declared as class Data { public : // rest of class };
4
1835
by: responsible | last post by:
Hi, Digging through the STL source code, i found this gem.. template <class _Operation, class _Tp> inline binder2nd<_Operation> bind2nd(const _Operation& __fn, const _Tp& __x) { typedef typename _Operation::second_argument_type _Arg2_type; return binder2nd<_Operation>(__fn, _Arg2_type(__x)); }
0
8405
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8060
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8273
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6735
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5878
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5441
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3903
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
3951
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1514
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.