Tagged Questions
10
votes
1answer
241 views
Member function pointer
If the following from the C++ FAQ Lite is true: "a function name decays to a pointer to the function" (as an array name decays to a pointer to its first element); why do we have to include the ...
9
votes
10answers
163 views
Can I assign a member data pointer to a derived type?
This is probably best shown with example code. The following fails to compile with g++:
struct Base {
};
struct Derived : public Base {
};
struct Container {
Derived data_;
};
int main(void) {
...
6
votes
3answers
307 views
member function pointer which returns same type of member function pointer
I'd like to declare a member function pointer in C++, that returns the same member function pointer type
This doesn't work:
class MyClass {
public:
typedef FunctionPtr ...
5
votes
3answers
211 views
Function member pointer with private base
The following code yields a compile time error:
'base::print' : cannot access private member declared in class 'base_der'
However, I have made the member public in the derived class. Why doesn't ...
3
votes
1answer
183 views
Type of pointer to member from base class
I have a problem regarding member pointers. The following code fails to compile using both Oracle Solaris Studio 12.2's CC and cygwin GCC 4.3.4 but works with Microsoft Visual C++ 2010:
struct A {
...
3
votes
7answers
175 views
Nested data member pointer - not possible?
The foolowing reduced code sample does not do anything usefull but two subsequent assignments to a data member pointer. The first assignement works, the second one gives a compiler error. Presumably ...
2
votes
1answer
89 views
Is it standard C++ to assign a member pointer to the address of another member in the constructor initializer?
Does this conform to the standard?
class Foo {
Bar m_bar;
Bar * m_woo;
public:
Foo() : m_bar(42, 123), m_woo(&m_bar) { }
};
1
vote
2answers
185 views
is there a use for &func or class::func in c++?
This seems inconsistent. Why do we use &Example::func instead of Example::func? is there a use for Example::func or &exampleFunction? it doesnt seem like we can make a reference to a function ...
1
vote
4answers
3k views
How to cast member variable pointer to generic type in C++
I have code similar to this in my application:
class A
{
public: int b;
}
class C
{
public: int d;
}
void DoThings (void *arg1, MYSTERYTYPE arg2);
A obj_a;
C obj_c;
DoThings(&obj_a, ...
0
votes
2answers
79 views
Odd syntax: asterisk after scope operator (::)?
Help me understand the following code snippet:
(foo.h)
class Foo
{
public:
typedef void (MyType::*Handler)(SomeOtherType* t);
Foo(Handler handler) : handler_(handler) { }
...
0
votes
3answers
248 views
Offset of pointer to member
template<class T, typename U> ptrdiff_t foo(T U::* m)
{
// return offset
}
How I can get the offset of the field 'm' in this context? I would prefer to use am compile-time expression.
...