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

Home Posts Topics Members FAQ

mem_fun and C2784 using Ms VC++

Can anyone tell how to fix the compile error for the program below?

#include "iostream.h "
#include <vector>
#include <algorithm>
#include <functional>
#include <list>

using namespace std;

class Widget
{
};

class B
{
public:
bool IsInteresting(W idget) {return true;}
};

class C
{
public:
void Find(B b)
{
list<Widget>::i terator i = find_if(m_widge ts.begin(),m_wi dgets.end(),
mem_fun_ref((*t his).IsInterest ing));
}
private:
list<Widget>m_w idgets;
bool IsInteresting(c onst Widget widget) {return true;}
};

void main(void)
{};

Jul 22 '05 #1
9 2815
Mr X wrote:
Can anyone tell how to fix the compile error for the program below?

#include "iostream.h "'
Ugh!

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <list>

using namespace std;

class Widget
{
};

class B
{
public:
bool IsInteresting(W idget) {return true;}
};

class C
{
public:
void Find(B b)
{
list<Widget>::i terator i = find_if(m_widge ts.begin(),m_wi dgets.end(),
mem_fun_ref((*t his).IsInterest ing));
Shouldn't this be

mem_fun_ref(&C: :IsInteresting)

?
}
private:
list<Widget>m_w idgets;
bool IsInteresting(c onst Widget widget) {return true;}
};

void main(void)
Yuck!
{};


Bleh!
Jul 22 '05 #2
This doesn't work either: (can someone come up with something that
does?)

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <list>

using namespace std;

class Widget
{};

class B
{};

class C
{
public:
void Find(B b)
{
Widget widget;
std::find_if(m_ widgets.begin() ,m_widgets.end( ),std::bind2nd( std::mem_fun(&C ::IsInteresting ),widget));
}
private:
bool IsInteresting(W idget) {return true;}
list<Widget>m_w idgets;
};

Jul 22 '05 #3
Mr X wrote:
This doesn't work either: (can someone come up with something that
does?)

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <list>

using namespace std;

class Widget
{};

class B
{};

class C
{
public:
void Find(B b)
{
Widget widget;
std::find_if(m_ widgets.begin() ,m_widgets.end( ),std::bind2nd( std::mem_fun(&C ::IsInteresting ),widget));
Not sure what you're trying to accomplish, but this:

std::find_if(m_ widgets.begin() ,
m_widgets.end() ,
std::bind1st(st d::mem_fun(&C:: IsInteresting), this));

should at least compile.
}
private:
bool IsInteresting(W idget) {return true;}
list<Widget>m_w idgets;
};


V
Jul 22 '05 #4
It doesn't :
error C2784: 'class std::mem_fun_t< _R,_Ty> __cdecl std::mem_fun(_R
(__thiscall _Ty::*)(void))' : could not deduce template argument for
'<Unknown>
' from 'bool (__thiscall C::*)(class Widget)'

Jul 22 '05 #5
Mr X wrote:
It doesn't :
error C2784: 'class std::mem_fun_t< _R,_Ty> __cdecl std::mem_fun(_R
(__thiscall _Ty::*)(void))' : could not deduce template argument for
'<Unknown>
' from 'bool (__thiscall C::*)(class Widget)'


Get a better compiler.
Jul 22 '05 #6
Can someone explain bind2st/bind1st stl functions?
thx

Jul 22 '05 #7
"puzzlecrac ker" <ir*********@gm ail.com> wrote...
Can someone explain bind2st/bind1st stl functions?


What to explain? "Use the Source, Luke!" -- just look at the
'functional' header and find the source for those functions. They
are _literally_ one-liners.

Besides, what book on templates are you reading that doesn't talk
about bind1st/2nd?
Jul 22 '05 #8
dont remember those !

Jul 22 '05 #9

"Victor Bazarov" <v.********@com Acast.net> wrote in message
news:KH******** ***********@new sread1.mlpsca01 .us.to.verio.ne t...
Mr X wrote:
It doesn't :
error C2784: 'class std::mem_fun_t< _R,_Ty> __cdecl std::mem_fun(_R
(__thiscall _Ty::*)(void))' : could not deduce template argument for
'<Unknown>
' from 'bool (__thiscall C::*)(class Widget)'


Get a better compiler.


Yes. VC++ (at least versions 6.0 and earlier)
is notorious for weak template support.

-Mike
Jul 22 '05 #10

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

Similar topics

5
4929
by: Old Wolf | last post by:
I have a member function that acts on an object. I would also like to have a member function that acts on a container of such objects, using std::for_each. I tried: #include <algorithm> #include <functional> struct bar { template<typename T> void foo(T const &); template<typename InIt> void foo(InIt begin, InIt end)
2
1993
by: Robbie Hatley | last post by:
I've got a function that I use a lot when making utility programs that need to do the same thing to every directory in a tree. Its prototype is: unsigned long int CursDirs (void Func(void)); This just applies the fuction Func to every subdirectory of the current directory. It works fine when I pass it pointers to regular void-void functions.
13
5926
by: Ioannis Vranos | last post by:
What is the exact difference between mem_fun and mem_fun_ref, since in all examples I looked at, they are used in exactly the same way? -- Ioannis Vranos http://www23.brinkster.com/noicys
4
3111
by: ShaneG | last post by:
We have ptr_fun to handle functions, mem_fun to handle member functions that will be called through a pointer, and mem_fun_ref to handle member functions that will be called through a reference. First, why do we need to have seperate mem_fun/mem_fun_ref? The first returns a mem_fun_t, and the second a mem_fun_ref_t. But the only difference between mem_fun_t and mem_fun_ref_t is that they have different operator() methods. But since...
4
3508
by: david.dfx | last post by:
-------------------------------------------------------------------------------- I'm having a problem implementing the STL map container using a class object. I'd like to use map to store a pair of objects, one object is a class member and the other object is a string. Here's a simplified version of the code that I wrote. Any guidance would be much appreciated here. (I chose not to post the full program, but I feel if I can resolve the...
8
4499
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; }
1
1425
by: subramanian100in | last post by:
Suppose I have class WordAndLineNumbers { public: void print( ); // other member functions private: // data members
2
2230
by: zelmila19 | last post by:
Hi am working on this program that will display the sum, difference, product and quotient of two numbers using the selection structures. This is what I did: #include <iostream> using std::cout; using std::cin; using std::endl; int num1 = 0;
2
3875
by: Olumide | last post by:
Hello, I've got this nice inner class that I'm holds a set of "FrontPoint" objects as shown below. Unfortunately, the find and insert methods trigger massive C2784 errors. Would someone please point out what I'm doing wrong? Many thanks, - Olumide
0
8946
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9449
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9310
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...
0
9182
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
8186
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
6735
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
6031
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
4550
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
4809
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.