Tagged Questions

22
votes
3answers
274 views

a question about the precedence of C++ operators “address of” and “scope resolution”

Hello I have this code with a compiler error (error is from Microsoft Visual Studio 2008): class B { protected: int b; }; class A : public B { public: void foo(){ &B::b; }// error C2248: 'B::b' ...
17
votes
2answers
381 views

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

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 ...
16
votes
6answers
472 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), ...
14
votes
2answers
340 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. ...
13
votes
4answers
221 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 ...
12
votes
5answers
216 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 ...
8
votes
3answers
330 views

I can not get access to pointer to member. Why?

Consider the following code: template<class T, class F> struct X {}; template<class T, class F, T F::* m> struct Y {}; struct Foo { int member; typedef X<int, ...
8
votes
1answer
3k views

How to get the address of an overloaded member function?

I'm trying to get a pointer to a specific version of an overloaded member function. Here's the example: class C { bool f(int) { ... } bool f(double) { ... } bool example() { // I want to ...
7
votes
3answers
187 views

Pointer to member question

$4.11/2 states - An rvalue of type “pointer to member of B of type cv T,” where B is a class type, can be converted to an rvalue of type “pointer to member of D of type cv T,” where D is ...
6
votes
1answer
124 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 ...
6
votes
7answers
1k views

Passing pointer to 2D array c++

I'm having this problem for quite a long time - I have fixed sized 2D array as a class member. class myClass { public: void getpointeM(...??????...); double * retpointM(); private: ...
5
votes
1answer
261 views

Why can't I downcast pointer to members in template arguments?

If I make a pointer-to-base-member, I can convert it to a pointer-to-derived-member usually, but not when used within a template like Buzz below, where the first template argument influences the ...
5
votes
1answer
192 views

How to create pointer-to-mutable-member?

Consider the following code: struct Foo { mutable int m; template<int Foo::* member> void change_member() const { this->*member = 12; // Error: you cannot assign to a ...
5
votes
4answers
309 views

How to save pointer to member in compile time?

Consider the following code template<typename T, int N> struct A { typedef T value_type; // OK. save T to value_type static const int size = N; // OK. save N to size }; Look, it is ...
5
votes
6answers
2k views

Overloaded member function pointer to template

I'm try to store member function pointers by templates like this. (This is a simplified version of my real code) template<class Arg1> void connect(void (T::*f)(Arg1)) { //Do some stuff ...
4
votes
3answers
89 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; ...
4
votes
4answers
106 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 ...
4
votes
5answers
68 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 ...
4
votes
3answers
150 views

What does the following code mean in c++?

struct Dog{ int a; int b; }; int Dog::*location = &Dog::a Dog* obj1 = new Dog; obj1->*location = 3; what does &Dog::a refer to?
4
votes
4answers
187 views

How to have struct members accessible in different ways

I want to have a structure token that has start/end pairs for position, sentence, and paragraph information. I also want the members to be accessible in two different ways: as a start/end pair and ...
4
votes
3answers
1k views

Casting between void * and a pointer to member function

I'm currently using GCC 4.4, and I'm having quite the headache casting between void * and a pointer to member function. I'm trying to write an easy-to-use library for binding C++ objects to a Lua ...
3
votes
2answers
62 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 ...
3
votes
1answer
221 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 ...
3
votes
4answers
204 views

Is there pointer to member traits or something like this?

Based on other my question. Consider the following code template<typename T, int N> struct A { typedef T value_type; // save T to value_type static const int size = N; // save N to size }; ...
3
votes
4answers
324 views

Clearest way to code structarray map functor in C++

This is a poll for opinions on the most readable way to do something -- whether to use a C++ pointer-to-member, a byte offset, or a templatized functor to define "select member X from structure foo". ...
2
votes
2answers
226 views

Template type deduction for a pointer to member function

I have a very similar problem to that presented by Morpheus, in the following question: Overloaded member function pointer to template The solution proposed by Richard Corden requires the user to ...
2
votes
5answers
150 views

Using a member function pointer within a class

Given an example class: class Fred { public: Fred() { func = &Fred::fa; } void run() { int foo, bar; *func(foo,bar); } double fa(int x, int y); double fb(int x, int y); private: ...
2
votes
5answers
1k views

Callback in C++, template member? (2)

The following callback class is a generic wrapper to "callable things". I really like its API, which has no templates and is very clean, but under the hood there is some dynamic allocation which I was ...
1
vote
1answer
98 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 ...
1
vote
2answers
69 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; }; ...
1
vote
1answer
115 views

C++ Pointer to Members

If I have two classes that are in the same hierarchy with a member of the same name and type, what is the "correct" way to create a member pointer to the base class's variable. Ex. class A { int ...
1
vote
6answers
119 views

Lists of member pointer functions

Say I have a class: class A { public: void doSomething(); } Where doSomething does something that explicitly relies on the internal state of the instance of A. Now, I have a situation where I ...
1
vote
7answers
954 views

Callback in C++, template member?

Following code does NOT work, but it expresses well what I wish to do. There is a problem with the template struct container, which I think SHOULD work because it's size is known for any template ...
1
vote
3answers
730 views

Accessing a template base classes function pointer type

I have a class that I've been provided that I really don't want to change, but I do want to extend. I'm a pattern and template newbie experimenting with a Decorator pattern applied to a template ...
0
votes
1answer
94 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 ...
0
votes
2answers
71 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
3answers
119 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] = { ...
0
votes
2answers
142 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 ...
0
votes
3answers
985 views

Qt4 C++ Pointer to const QList of pointers

I got stuck with pointer to const QList of pointers to Foo. I pass pointer to myListOfFoo from Bar object to Qux. I use pointer to const to prevent making any changes outside Bar class. The problem is ...
0
votes
1answer
147 views

c++ pointer to const class member problem

I'm having this problem with C++ classes. I would like to get pointer to myBar object and store it in quxBar. The reason is I would like to be able to check the value using quxBar->getX() but I ...
0
votes
7answers
177 views

Pointer to members [closed]

In following code consider the statement :- "int B::*bpm;" class B { public : int bi; }; class D : public B { }; int main() { D obj; int B::*bpm; bpm = &B::bi; ...
0
votes
2answers
101 views

On the use (and usefulness) of a pointer to member function vs directly calling the member function

I am new to pointer to member functions, and I would like to know their pros and cons. Specifically, consider this: #include <iostream> #include <list> using namespace std; class ...
0
votes
3answers
398 views

C++ Pointer member function with templates assignment with a member function of another class

class IShaderParam{ public: std::string name_value; }; template<class TParam> class TShaderParam:public IShaderParam{ public: void (TShaderParam::*send_to_shader)( const TParam&,const ...
0
votes
1answer
163 views

Calling a member function from a member function templated argument

Given the following code which I can't get to compile. template < typename OT, typename KT, KT (OT::* KM)() const > class X { public: KT mfn( const OT & obj ) ...
-1
votes
3answers
71 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 ...
-2
votes
1answer
59 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 ...