473,761 Members | 7,710 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

question on mem_fun( )

Consider the following program:

#include <iostream>
#include <string>
#include <list>
#include <algorithm>

using namespace std;

class Test
{
public:
Test(const string &str) : s(str) { }

void print()
{
cout << "from Test::print() : " << s << endl;
return;
}

private:
string s;
};

int main()
{
list<Test *ls;

Test zero("zero");
Test one("one");
Test two("two");

ls.push_back(&z ero);
ls.push_back(&o ne);
ls.push_back(&t wo);

for_each(ls.beg in( ), ls.end( ), mem_fun(Test::p rint) );

return 0;
}

When I compile this program, I am getting the following compilation
error(as expected):
'Test::print': function call missing argument list; use '&Test::print '
to create a pointer to member

If I put
mem_fun(&Test:p rint)
it compiles fine.

Why should we pass the address of a member function here
(&Test::print )?
Doesn't the function name Test::print itself give a pointer ?

For example, a free global function name itself can be passed as
argument to for_each( ).
We don't need to pass the address of a global function(though passing
address of a global function is accepted).

What is the difference between passing member function and a global
function to for_each ?

Kindly explain.

Thanks
V.Subramanian

Sep 8 '07 #1
1 1636
su************* *@yahoo.com, India wrote:
Consider the following program:

#include <iostream>
#include <string>
#include <list>
#include <algorithm>

using namespace std;

class Test
{
public:
Test(const string &str) : s(str) { }

void print()
{
cout << "from Test::print() : " << s << endl;
return;
}

private:
string s;
};

int main()
{
list<Test *ls;

Test zero("zero");
Test one("one");
Test two("two");

ls.push_back(&z ero);
ls.push_back(&o ne);
ls.push_back(&t wo);

for_each(ls.beg in( ), ls.end( ), mem_fun(Test::p rint) );

return 0;
}

When I compile this program, I am getting the following compilation
error(as expected):
'Test::print': function call missing argument list; use '&Test::print '
to create a pointer to member

If I put
mem_fun(&Test:p rint)
it compiles fine.

Why should we pass the address of a member function here
(&Test::print )?
Doesn't the function name Test::print itself give a pointer ?

For example, a free global function name itself can be passed as
argument to for_each( ).
We don't need to pass the address of a global function(though passing
address of a global function is accepted).

What is the difference between passing member function and a global
function to for_each ?

Kindly explain.
5.3.1
3 A pointer to member is only formed when an explicit & is used and its
operand is a qualified-id not enclosed in parentheses.

It's different between a free function and the member function

void f();
&f or f are equivalent, maybe the latter one is for C compatibility, I
guess.

--
Thanks
Barry
Sep 8 '07 #2

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

Similar topics

22
2231
by: Rusty | last post by:
Is there any way to use the STL algorithm for_each if my container contains pointers? For example, class A { int a; virtual void print (void) {cout << a << endl;} }; class B: public A {
5
4932
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
1996
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
5928
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
3115
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...
9
1284
by: shan_rish | last post by:
Hi CLCers, I coded a function to allocate memory and i am passing a pointer to the function. The code is compiling but throws error and closes while executing. The program is as below: #include<stdio.h> #include<stdlib.h> int main() { int *p; void mem_fun(int *i);
3
1543
by: amitmehrotra007 | last post by:
I have an old fortran library which has a function f1 which expects a function pointer to be passed to it of the type double(*) (const double &) I have a class Foo which has two functions class Foo { public: double f2 (const double &); void f3 ();
4
2603
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
1428
by: subramanian100in | last post by:
Suppose I have class WordAndLineNumbers { public: void print( ); // other member functions private: // data members
0
9531
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
9345
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
10115
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
9957
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
9775
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
8780
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
7332
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
6609
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
3881
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.