Berkeley CSUA MOTD:Entry 22575
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/03 [General] UID:1000 Activity:popular
4/3     

2001/9/21-22 [Computer/SW/Languages/C_Cplusplus] UID:22575 Activity:insanely high 76%like:23074
9/20    How do I pass a pointer to a member function in C++?
        \_ void Apply( Class* obj, (Class::*pmf)(void) ) { obj->*pmf(); }

        \_ Ilyas answers the question "How do I pass a PMF to a function
           that expects a pointer to a non-member function?", which is not
           what you asked.   --pld
           void Apply(Class* obj, (Class::*pmf)(void)) { obj->*pmf(); }
           Apply(instance, &instance::SomeMemberFunction);
        \_ You can't because a member function is not quite a function in a
           sense you are used to.  You see, all member functions implicitly
           assume a 'zeroth' argument, which is always the object on which
           this member function is invoked.  In general, you do not know the
           identity of this object at compile time, and even if you did, there
           is really no syntax in C++ to allow you to specify this information
           in the function pointer type.  What you want is to create a wrapper
           function, which calls the member function on an appropriate object.
           Then you can pass the pointer to the wrapper function to your
           mergesort routine.  It's worth noting that object oriented languages
           with closures and curried functions, like ocaml, avoid this
           problem altogether.  -- ilyas
           \_ I like my functions curried, Indian style.
    \_ If intCompare is static, then try &MyClass::intCompare.  If it's not,
       you can use member function adaptor in stl <functional>.
       \_ I stand corrected, static member functions (obviously) don't need
          the pointer to the object as an argument.  -- ilyas.
       \_ Speaking of which, any rec's on a good online beginner's guide to stl
          and/or a book?
          \_ it's such an unwieldy, ugly, large mess full of little caveats.
             i think it's time for C++ to die.
             \_ lovely.  really.  when microsoft dies because of that same
                thing, i'll be worried about c++.  If you're on campus net
                you can get to the C++ lang spec.
          \_ I liked Meyers' "Effective STL".  The docs on
             http://www.sgi.com/tech/stl are good for reference.
    \_ Ah.  C derived languages.
       Widget w;
       char *c;
       w.function(c);
       \_ what the fuck? are you clueless? what are you talking about?
          \_ 'c' is a pointer being passed to a member function.  The OP needs
             to clarify.
          \_ a) How do I pass a (pointer to a member function) in C++?
             b) How do I pass (a pointer) to (a member function) in C++?
             I think the original question was (a), not (b).
             \_ Maybe that's why most books refer to them as "function pointer"
                and "member function pointer".
2025/04/03 [General] UID:1000 Activity:popular
4/3     

You may also be interested in these entries...
2012/7/19-11/7 [Computer/SW/Languages/C_Cplusplus] UID:54439 Activity:nil
7/19    In C or C++, how do I write the code of a function with variable
        number of parameters in order to pass the variable parameters to
        another function that also has variable number of parameters?  Thanks.
        \_ The usual way (works on gcc 3.0+, Visual Studio 2005+):
               #define foo(fmt, ...) printf(fmt, ##__VA_ARGS__)
           The cool new way (works on gcc 4.3+):
	...
2004/10/29-30 [Computer/SW/Languages/C_Cplusplus] UID:34449 Activity:very high
10/29   C++ is so freaking BROKEN.  Augh!
        \_ Just use C.
           \_ Would if I could.
        \_ No, you are.  C++ works just fine, and far better than C for many
           purposes.
           \_ C vs. C++.  FIGHT!!!
	...
2004/4/13-14 [Computer/SW/Languages/C_Cplusplus] UID:13175 Activity:high
4/13    How much C++/C knowledge do recent Berkeley CS/EECS grad have?
        \_ Class CSGrad inherits FromDaddy and does not implement C++Knowledge
           very well.
           \_ funny.  just the rich and poor as always.  the middle class can't
              afford education.
        \_ They know how to deal with pointers and addresses, malloc and free.
	...
2004/3/30-31 [Computer/SW/Languages/Perl] UID:12925 Activity:kinda low
3/17    In Perl, how do I make variables have static types and type check
        for valid parameter/actuals? I realize that variables are untyped
        in Perl ($var can be 0.001 or "hello") but I'd like to have more
        strict checking so that errors would be caught ahead of run-time,
        Thanks,                                                 -java guy
        \_ use java.  Seriously.  You don't use perl if you want strong
	...
2002/11/5 [Computer/SW/Languages/C_Cplusplus] UID:26409 Activity:high
11/4    I'm having a problem formatting inline elements in xsl-- I have to
        handle the situation where
        <school>I graduated from
          <link href="<DEAD>www.berkeley.edu"<DEAD>Cal</link> in 1998.
        </school>
        My current template is like this:
	...
2000/11/21 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Languages/Java] UID:19871 Activity:very high
11/21   All java class inherites from class *Object*, if I have three classes
        A, B, and C all have one same method showErr().  If I want to have a
        function that can call showErr() depending on the object that I passed
        in, eg.
                public void handleErr(Object o) {
                        o.showErr();
	...
Cache (1037 bytes)
www.sgi.com/tech/stl
Industries 10 Developers 11 Services and Support 12 Serious Fun STL 13 Services & Support Standard Template Library Programmer's Guide 14 Introduction to the STL 15 How to use this site 16 Table of Contents 17 Download the STL 18 Index 19 Index by Category 20 Design Documents 21 What's New 22 Other STL Resources 23 Frequently Asked Questions 24 IOstreams library (experimental) 25 Send us a comment Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the below copyright notice appears in all copies and that both the copyright notice and this permission notice appear in supporting documentation. Silicon Graphics makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. Copyright 1994 Hewlett-Packard Company 26 Using this site means you accept its terms of use | 27 privacy policy | 28 trademark information Copyright 1993-2004 Silicon Graphics, Inc.