473,625 Members | 3,330 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

mem_fun with template function

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<typena me T> void foo(T const &);
template<typena me InIt> void foo(InIt begin, InIt end)
{ std::for_each(b egin, end, foo); }
};

but got a compiler error (at the point of calling foo, not at the point
of declaration) because 'foo' was a pointer to member function, rather
than a pointer to function. So I tried:
std::for_each(b egin, end, std::mem_fun(&f oo));
but got the error:
Could not find a match for std::mem_fun<S, T>(void (bar::*)(const T &))

Finally I tried:
std::for_each(b egin, end, std::mem_fun(&f oo<typename InIt::value_typ e>));
but got an ICE.

What is the correct usage?

I have in fact solved the problem with:
{ for (; begin != end; ++begin) fo(*begin); }
but would like to know if it is possible with for_each anyway.
Jul 22 '05 #1
5 4925
In article <84************ **************@ posting.google. com>,
ol*****@inspire .net.nz (Old Wolf) wrote:
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<typena me T> void foo(T const &);
template<typena me InIt> void foo(InIt begin, InIt end)
{ std::for_each(b egin, end, foo); }
};

but got a compiler error (at the point of calling foo, not at the point
of declaration) because 'foo' was a pointer to member function, rather
than a pointer to function. So I tried:
std::for_each(b egin, end, std::mem_fun(&f oo));
but got the error:
Could not find a match for std::mem_fun<S, T>(void (bar::*)(const T &))

Finally I tried:
std::for_each(b egin, end, std::mem_fun(&f oo<typename InIt::value_typ e>));
but got an ICE.

What is the correct usage?
struct bar {
template < typename T >
void foo(const T) const { /* whatever */ }
template < typename InIt >
void foo(InIt begin, InIt end) const {
for_each(begin, end,
bind1st(mem_fun (&bar::foo<type name InIt::value_typ e>) ,this));
}
};

Note that foo no longer takes a 'const T&', it takes a 'const T'. This
is because of a problem with the language that you can't take a
reference to a reference. I think this is scheduled to be fixed in the
next version of C++?

I have in fact solved the problem with:
{ for (; begin != end; ++begin) foo(*begin); }
but would like to know if it is possible with for_each anyway.


I would write it:
{ while (begin != end) foo( *begin++ ); }
Jul 22 '05 #2
"Old Wolf" <ol*****@inspir e.net.nz> wrote in message
news:84******** *************** ***@posting.goo gle.com...
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<typena me T> void foo(T const &);
template<typena me InIt> void foo(InIt begin, InIt end)
{ std::for_each(b egin, end, foo); }
};

but got a compiler error (at the point of calling foo, not at the point
of declaration) because 'foo' was a pointer to member function, rather
than a pointer to function. So I tried:
std::for_each(b egin, end, std::mem_fun(&f oo));
but got the error:
Could not find a match for std::mem_fun<S, T>(void (bar::*)(const T &))

Finally I tried:
std::for_each(b egin, end, std::mem_fun(&f oo<typename InIt::value_typ e>)); but got an ICE.

What is the correct usage?

I have in fact solved the problem with:
{ for (; begin != end; ++begin) fo(*begin); }
but would like to know if it is possible with for_each anyway.


This looks like a case where attempting to only use the functionality
provided by the standard library is difficult, if not impossible. You first
create an instance of mem_fun1_t<void , bar, const T&>. You need to bind the
first argument of the mem_fun1_t's operator() to this, so you need to create
a binder1st, which will expose an operator() which will declare a const T&&,
which is not allowed. The boost library may make this easier. However, I
wouldn't worry about it, because the for loop is much clearer.

--
David Hilsee
Jul 22 '05 #3
On Mon, 16 Aug 2004 01:31:41 GMT, "Daniel T."
<po********@eat hlink.net> wrote:
struct bar {
template < typename T >
void foo(const T) const { /* whatever */ }
template < typename InIt >
void foo(InIt begin, InIt end) const {
for_each(begin, end,
bind1st(mem_fun (&bar::foo<type name InIt::value_typ e>) ,this));
}
};

Note that foo no longer takes a 'const T&', it takes a 'const T'. This
is because of a problem with the language that you can't take a
reference to a reference. I think this is scheduled to be fixed in the
next version of C++?


The standard library technical report (due soon) includes
std::tr1::bind and std::tr1::mem_f n which sidestep these problems
without language changes. e.g.

bind(&bar::foo< typename InIt::value_typ e>, this)

and foo can take a reference parameter now.

Tom
Jul 22 '05 #4
"Daniel T." <po********@eat hlink.net> wrote:
ol*****@inspire .net.nz (Old Wolf) wrote:
I have in fact solved the problem with:
{ for (; begin != end; ++begin) foo(*begin); }
but would like to know if it is possible with for_each anyway.


I would write it:
{ while (begin != end) foo( *begin++ ); }


But that causes an object to be created and destroyed every time
around the loop (the return-value from operator++ I mean), if
the iterator is a class type? (as it usually will be in my
project, since this gets called for deques).
Jul 22 '05 #5
ol*****@inspire .net.nz (Old Wolf) wrote:
"Daniel T." <po********@eat hlink.net> wrote:
ol*****@inspire .net.nz (Old Wolf) wrote:
I have in fact solved the problem with:
{ for (; begin != end; ++begin) foo(*begin); }
but would like to know if it is possible with for_each anyway.


I would write it:
{ while (begin != end) foo( *begin++ ); }


But that causes an object to be created and destroyed every time
around the loop (the return-value from operator++ I mean), if
the iterator is a class type? (as it usually will be in my
project, since this gets called for deques).


*If* profiling shows this to be a performance hit, then change it...
What is being created is an iterator, not exactly the largest object in
the world.
Jul 22 '05 #6

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

Similar topics

1
2544
by: k0tic | last post by:
The intent of the following code is to call delete on each pointer in the vector dead implicitly via auto_ptr<T>'s reset method semantics which delete their current pointer before taking ownership of reset's arg in addition to when the object is destroyed -- in this case when, as an automatic functor variable, the auto_ptr goes out of scope. Is the following code legal and if not, why not. Thanks in advance, -L
2
2314
by: Maitre Bart | last post by:
First, I describe my setup in 3 points. Then I describe what I want to do, and describe the error I get. 1) I have a container GTTable container pointer to data (class GT *). 2) I made a template class based on mem_fun1, which in my version accepts 2 arguments in each call: one that is variable on each call (VA, typically coming from the above container) and one that is fixed on each call (FA, kind of constant provided by the user):
2
1988
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.
9
2808
by: Mr X | last post by:
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;
13
5913
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
3108
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
2591
by: joseph cook | last post by:
I am getting a compile error on any compiler I try, so I know I have an error here. Can anyone see it? //includes class Foo { public: Foo(int a){m_hi = a;} int hi(){return m_hi;}
1
1627
by: subramanian100in | last post by:
Consider the following program: #include <iostream> #include <string> #include <list> #include <algorithm> using namespace std; class Test
8
6342
by: flopbucket | last post by:
Hi, I am having some problem using std::bind1st() and mem_fun. I want to bind member function calls to some kind of functor so it can be called later. The following works fine for me: class Foo {
0
8256
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
8189
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
8694
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
7184
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
6118
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
5570
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
4089
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
4193
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2621
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

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.