Sponsored Content
Top Forums Programming How to Declare an array of function pointers? Post 303018206 by Corona688 on Thursday 31st of May 2018 12:13:03 PM
Old 05-31-2018
Quote:
Originally Posted by spflanze
Those functions are class members. I did not know that pointers cannot be gotten for class member functions. That was the problem. Thanks. Smilie
A function pointer does not contain enough information to point to a member function, it's missing the class instantiation ( the bit of memory containing member variables, etc) so C++ won't let you do it.

You can do it with static member functions because they don't even have access to a class' members. If that doesn't matter, if they really don't use the class, you can make them static and get pointers to them.
Code:
class myclass {
public:
        static int myfunction(int that) {
                return(42);
        }

};

int (*fn)(int) = myclass::myfunction;


Last edited by Corona688; 05-31-2018 at 01:18 PM..
 

10 More Discussions You Might Find Interesting

1. Programming

Sharing C++ Objects with virtual function table pointers

I am pondering the next question: Can I safely sare objects that have virtual functions (i.e. have virtual function table pointers) between two processes ? Where will the pointers point to in each process ? What I am afraid of is that in the creating process the pointer will indeed point to... (2 Replies)
Discussion started by: Seeker
2 Replies

2. Programming

Regarding Function and Pointers.

HI, Here is some thing that is puzzling me from a long time. Can some body explain me this with example. The question is :- What is the difference between function pointer and pointer to a function. Where do we actually use the function pointers and pointer to functions. Thanks in... (0 Replies)
Discussion started by: S.Vishwanath
0 Replies

3. Shell Programming and Scripting

declare, assign variables using array, counter, loop

using bash Tru64... converting DCL to shell... any tips to make this work would be greatly appreciated. Below is my failed attempt to assign command line input to variables by first declaring an array. I use a counter to create unique variables in a loop through the array. I need to call... (3 Replies)
Discussion started by: egkumpe
3 Replies

4. Programming

Pointers and array

hi all, let say i have a pointer exit, and this exit will store some value. how can i store the value that the pointer points to into an array and then print them out from the array. thanks in advance (2 Replies)
Discussion started by: dianazheng
2 Replies

5. Shell Programming and Scripting

How to declare an array to take more than 10,000 characters

Hi Guys Need some help I am reading the string values from the text files into the shell script and had them feed into array I have declared an associative array as TYPE t_user_id_tab IS TABLE OF VARCHAR2(3000);\n my_user_id t_user_id_tab;\n varchar2 is limiting me to take only... (0 Replies)
Discussion started by: pinky
0 Replies

6. Programming

Problem with array of pointers

Hi All, I am using the array of pointers and storing the address of string.This is a global list. So i am using extern to give the reference of this list to another file and using reading the data from this string. But list is being corrupted and string is missing some characters in... (2 Replies)
Discussion started by: lovevijay03
2 Replies

7. Programming

Traversing in Array of pointers

Please find the below program. the requirement and description of the program also given: ganesh@ubuntu:~/my_programs/c/letusc/chap9$ cat fa.c.old /* Program : write a program to count the number of 'e' in thefollowing array of pointers to strings: char *s = { "We will teach you how... (12 Replies)
Discussion started by: ramkrix
12 Replies

8. Programming

question about Function pointers

Hello forum memebers As iam new to C++ programming i am little bit confuse to understand the function pointers. Please help me to understand the function pointers with examples are suggest me good site for this,Its better if it have picturial representation ie any PPTS available in Google.... (2 Replies)
Discussion started by: rajkumar_g
2 Replies

9. Programming

Pointers and array

Hello, I read from a book exercise for a challenge. How to print out each letter of char array a by two different pointers pa and ppa in the example? I have tried my code for letter "r" by testing without full understanding as only the first one worked. #include<stdio.h> int main() { char... (17 Replies)
Discussion started by: yifangt
17 Replies

10. UNIX for Dummies Questions & Answers

How to declare an array in UNIX and print the elements with tab delimits?

Hello, In a shell script, I want to declare an array and subsequently print the elements with tab delimits. My array has the following structure and arbitrary elements: myArray=('fgh' 'ijk' 'xyz' 'abc'); Next, I would like to print it with a '\n' at the end. Thanks for your input! ... (2 Replies)
Discussion started by: Gussifinknottle
2 Replies
class_add(3)						     Library Functions Manual						      class_add(3)

NAME
class_add - Add a member to an existing class LIBRARY
Standard C Library (libclass.a) SYNOPSIS
#include <apar_types.h> #include <sys/class.h> class_add(class_apar_handle_t, *class_name, type, member, force); class_apar_handle_t handle class_name char type int member int force int PARAMETERS
The partition descriptor returned by class_open(). Name of the class to which the new member is to be added. Member type as defined in <sys/class.h>. For example: CL_TYPE_UID. Identifier representing type. TRUE/FALSE - If a member is found in another class, force the member to be moved to class_name DESCRIPTION
Add a member to an existing class. If the member is found in another class, the member will be moved to the new class if force is TRUE. Note that the calling process must have root access privileges. RETURN VALUES
Operation successfully completed. An invalid partition handle was specified. Not super user. Permission denied. The class_name is not an ASCII string. The class_name does not exist. No space is available in class_name. A member of type type is already in class_name. A member of type type is in another class. This value is returned only if force is FALSE. Operations on the default class are not sup- ported. SEE ALSO
Functions:class_init(3), class_change(3), class_create(3), class_close(3), class_configure(3), class_get_config_stats(3), class_close(3), class_delete(3), class_destroy(3), class_disable(3), class_enable(3), class_save_database(3), class_restore_database(3), class_load_data- base(3), class_change_name(3), class_database_file_exists(3), class_database_name(3), class_database_modified(3), class_get_classes(3), class_get_class_members(3), Commands:class_admin(8), runclass(1), class_scheduling(4) Other: The System Administration guide. delim off class_add(3)
All times are GMT -4. The time now is 01:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy