The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
44 views

Class containing template dependent on the class member

The goal is to make kind of "smart getter" that gets the value from the current object if it is present, if not, it looks for the value in the parent object. So this ValueGetter class contains ...
-1
votes
1answer
100 views

pointer to member and using virtual functions

I want to fill a constexpr table with pointers to call the pointers later. The given example shows only one entry. I run into two problems: 1) It is not possible for me to find a correct syntax to ...
0
votes
2answers
72 views

Where are member functions stored for an object?

I'm experimenting with C++ to understand how class/structures and their respective objects are laid out in memory and I understood that each field of a class/structure is an offset into their ...
1
vote
1answer
76 views

struct without typedef - cannot use in a pointer-to-member

I have a simple structure and I want a pointer-to-member c. I'm using MSVC2012 and if I don't declare the struct abc as a type definition (typedef), I can't use it.. how come? struct abc { int a; ...
3
votes
3answers
101 views

Convert pointer to data member to void *

I know that I can get a pointer to data member for a class or struct but the last line of the following code fails to compile: struct abc { int a; int b; char c; }; int main() { ...
3
votes
2answers
177 views

Pointer to class member as a template parameter

I want to use a pointer to a class member as a template parameter as in: template <class Class, class Result, Result Class::*Member> struct MyStruct { // ... }; Using this struct like ...
1
vote
3answers
170 views

(c++) any way to optimize this loop? can't use function pointer as its inside a class

Trying to optimize the fun_a1() function. The variable j does not change in the scope of fun_a1(). So, checking j==1 or 2 or 3 for each 'i' iteration is obviously a waste of CPU cycles. But if I try ...
1
vote
2answers
116 views

Pointer-to-member function resolution

Here is a functor used to filter a list of objects. It must be instanciated with a pointer to member function of the objects' class, as a way to access different elements. class Filter_Compare : ...
1
vote
1answer
99 views

Operating with template objects

DISCLAIMER I'm not allowed to use BOOST or any other library, only standard. In my class Foo I've a template function foo, which takes 2 parameters: a pointer-to-object and a ...
1
vote
2answers
162 views

Checking if a class has a copy constructor with TMP

I've been attempting a little SFINAE at making a way to determine if a generic type T has a copy constructor I can use. Here is where I currently am. template <bool statement, typename out> ...
1
vote
2answers
137 views

Function Pointer - Compile time error

I am new to function pointers and I would like your help. I am having a method: int test3(int i) { return i; } Then in another method(not main) I do: int (*pTest3)(int) = test3; From the ...
0
votes
2answers
74 views

Error with pointers to member variables as parameters; why?

Why do I keep on getting the following error in this code in Visual C++ 2010, and how do I fix it while maintaining the type inference capability for the member variable? error C2825: ...
2
votes
2answers
127 views

Implied types with a Pointer to Member template argument?

I'm working with pointer-to-member types inside templates, currently I have something like this going on: template <typename Base, typename Type, Type Base::* Var> struct Member { //Stuff ...
4
votes
2answers
167 views

C++ Pointer to member of a member?

Suppose I have two classes: class A { int x; int y; }; class B { int z; A ref; }; Suppose I also have a function that accepts a pointer-to-member integer of B, like so: void ...
-1
votes
1answer
89 views

For what object pointer values does the pointer to member operator invoke undefined behavior?

When using the pointer to member operator (->*), what pointer values for the object will invoke undefined behavior? Specifically, if the member function in question does not access any members and is ...
2
votes
2answers
91 views

Function Pointer Overloading Error?

I have the following definitions and prototypes (which are member functions of a class) with which I basically try to use function pointers to pass a different type of strategy to the divideQuery ...
0
votes
0answers
31 views

How do I retrieve a pointer to member for an _element_ in an _array_ of an object? [duplicate]

Possible Duplicate: Member pointer to array element Say you have a structure with a fixed size array. struct S { int a[10]; int b ; } ; Goal: Retrieve pointer to member for any index ...
2
votes
1answer
85 views

G++ equivalents for VisualC++ /vmg /vms

I want to compile a plugin for an application as a dynamic library. Usually, plugins are compiled with VisualC++, but I'd like to use G++. The SDK Documentation explicitly states The compiler ...
1
vote
2answers
371 views

Converting C++ pointer to member to C#

I've been researching how to successfully convert C++ pointer-to-member to C# but I haven't found anything useful yet. Let's say I have this function. typedef int STRUCT::*DEFINED; protected static ...
2
votes
1answer
403 views

Pointer-to-member as template parameter deduction

I want to get pointer-to-member as template parameter to the foo1. Here is code: struct baz{ int qux; }; template<typename C, typename T, T C::*m> struct foo1{}; template<typename C, ...
6
votes
3answers
766 views

How to print member function address in C++

It looks like std::cout can't print member function's address, for example: #include <iostream> using std::cout; using std::endl; class TestClass { void MyFunc(void); public: void ...
2
votes
1answer
111 views

Compiler error with template classes, inheritance, and pointers-to-member-functions

class A{ virtual int foo1(int a){ return foo1_1(a,filler(a)); } template<typename FunctionPtr_filler> int foo1_1(int a, FunctionPtr_filler ptrFn) { ...
3
votes
3answers
289 views

template member function specialized on pointer-to-data-member

I would like to define a nullary static template member function which would be (explicitly) specialized on pointer-to-data-member and could have, for each specialization, different return type. It ...
1
vote
6answers
762 views

Dynamically create a function pointer that calls a method on a given instance

I suspect this is impossible, but thought I'd ask. Say I have a class with a method: class A { public: void b(int c); }; I can make a pointer to that member function: void (A::*ptr)(int) = ...
3
votes
3answers
497 views

Accessing function pointer inside class

I am defining function pointer inside a class and trying to access it through an instance of the class but it shows an error. Here is the code: 1 #include<stdio.h> 2 3 class pointer { 4 ...
1
vote
2answers
79 views

c++ compiling error when using member functions as a template parameters

I'm trying to pass a member function pointer as a template parameter. Here is the code: template <typename Ret, typename T, Ret(T::*mptr)()> Handle<Value> get_value (Local<String> ...
1
vote
1answer
313 views

Could not deduce template argument & pointer to member

I am encountering the C2783 error with Visual C++ (could not deduce template argument), I have the following test case: enum SPKType { A, B, C, D }; template<SPKType TypeCode, class ObjectType, ...
2
votes
1answer
157 views

class template deduction from pointer to member

As one of the class template parameters I need to use a pointer to member: template <class Base, typename Member, Member Base::*m> class MemPtrTestUgly { ... }; This needs to be used as ...
2
votes
2answers
571 views

C++ Member Function Pointers

I'm doing a little game in C++ and I'm discovering the class members function pointers. I don't have any idea to make them work in the right way, but here is my attempt. // A struct where the ...
1
vote
1answer
236 views

Calling external class members from shared object

After lot of reading here and here, I still cannot get my code to work. Here is the problem: I have two classes, Fifo: #ifdef __cplusplus extern "C" { #endif class Fifo { public: Fifo(int ...
3
votes
2answers
102 views

Clarification on pointer to non-static class member

When I need a pointer to member of class, I do as following struct MyStruct { int foo(); }; int (MyStruct::*p)() = &MyStruct::foo; My question is why do I need to use & operator to ...
5
votes
3answers
518 views

Understanding Pointer-to-Member operators

I copied this program from a c++ practice book. What's going on behind the scenes? The expected output is: sum=30 sum=70 #include<iostream> using namespace std; class M { int x; ...
7
votes
1answer
201 views

Does C++ support member function references?

C++ permits function pointers and function references. It also permits pointers-to-member-functions. But does it permit references-to-member-functions? I can't seem to deduce the rules from the ...
0
votes
1answer
226 views

Pointer-to-member, type descriptors and references

I'm working on a type descriptor project in C++11. The type descriptor's job is to know the types of every member in a class, it's size and it's offset from the base of an object. I don't support ...
14
votes
4answers
406 views

Pointer to member that is a reference illegal?

Let us say I have: // This is all valid in C++11. struct Foo { int i = 42; int& j = i; }; // Let's take a pointer to the member "j". auto b = &Foo::j; // Compiler is not happy here ...
-2
votes
1answer
63 views

implementation of pointers to members [closed]

Since pointers to members do not affect the size of an object ,they must be computed at the run time only,right?So why use them??In a SO post,it was answered in terms of callbacks;could someone ...
0
votes
2answers
133 views

CRTP-related compiler error on pointer-to-a-member-function default value

Hi there, While making a CRTP-based generic wrapper to call arbitrary library functions, I've encountered a problem which I have trouble understanding. Here is a very simplified code to illustrate ...
0
votes
1answer
207 views

pointer to a data member in C++/CLI

How can I make a pointer to a data member in C++/CLI for example ref class team { List<teamMember^> members; teamMember^ leader; //the aim is to make it a pointer to an element in the ...
-1
votes
3answers
371 views

Printing a pointer-to-member-field

I was debugging some code involving pointers to member fields, and i decided to print them out to see their values. I had a function returning a pointer to member: #include <stdio.h> struct ...
1
vote
2answers
635 views

Convert vector to map with pointers to members?

I'm having trouble understanding why the code below #include <string> #include <vector> #include <map> using namespace std; struct Student { int id; string name; }; ...
0
votes
3answers
304 views

Assigning values to a struct member without using the members name in c?

I have a structure and what I would like to do is to assign values to its members using a for loop. That way I do not have to use the members name. Because the structure is long and i do not want 20 ...
17
votes
2answers
724 views

Strange C++ rule for member function pointers? [duplicate]

Possible Duplicate: Error with address of parenthesized member function In this recent question the OP ran into a strange provision of the C++ language that makes it illegal to take the ...
17
votes
2answers
3k views

Error with address of parenthesized member function

I found something interesting. The error message says it all. What is the reason behind not allowing parentheses while taking the address of a non-static member function? I compiled it on gcc 4.3.4. ...
0
votes
3answers
238 views

Polymorphic pointer to member variables

I'm trying to use pointers to member variables in a polymorphic fashion. This works: struct Foo { int member0; int member1; int* getMember( int i ) { static int Foo::* table[2] = { ...
4
votes
4answers
206 views

Recover Parent from Pointer-to-member

Suppose that we have a pointer-to-class member pointing at a field of a class. We also have a pointer to that specific field in a particular instance of the class. For example, we might have ...
3
votes
1answer
270 views

Friend Syntax for Ptr-to-member template parameter

Okay, so I believe this is a pure c++ mucky syntax question. I have a class defined with a ptr-to-member as one of its template parameters: template <class T, T *T::*hook> class My_list { I ...
4
votes
5answers
106 views

Calling the function pointed by a Pointer-to-Member-Function from within a struct

I have a class Test with a peculiar data structure. A member of class Test is a std::map where the key is a std::string and the mapped value is a struct defined as follows: typedef struct { void ...
12
votes
5answers
579 views

Crazy C++ template - A template to access individual attributes of a class

I am a novice C++ programmer, but I thought I know enough about C++ until today when I came across code like this at work and failed to understand how it actually works. class Object { }; template ...
17
votes
6answers
1k views

What are the Pointer-to-Member ->* and .* Operators in C++?

Yes, I've seen this question and this FAQ (wrong link) this FAQ, but I still don't understand what ->* and .* mean in C++. Those pages provide information about the operators (such as overloading), ...
0
votes
2answers
287 views

Member function pointers - only a address?

http://www.codeproject.com/KB/cpp/fastdelegate2.aspx In the second paragraf of the introduction in the above article it says: "This is due to the expensive heap memory allocation that is required to ...

1 2