473,698 Members | 2,426 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 2813
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
1990
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
5919
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
3110
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
3507
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
4495
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
1422
by: subramanian100in | last post by:
Suppose I have class WordAndLineNumbers { public: void print( ); // other member functions private: // data members
2
2229
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
3871
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
8678
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
8609
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9030
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
8899
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
8871
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
7737
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...
0
5861
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();...
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2333
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.