Tagged Questions

13
votes
6answers
377 views

Why doesn't the program crash when I call a member function through a null pointer in C++?

#include "iostream" using namespace std; class A { public: void mprint() { cout<<"\n TESTING NULL POINTER"; } }; int main() { A *a = NULL; a->mprint(); return ...
13
votes
4answers
448 views

How can C++ virtual functions be implemented except vtable? [closed]

Possible Duplicate: A question about virtual mechanism in C++ Is using vtable the only way to implement virtual member functions mechanism in C++? What other ways exist?
9
votes
5answers
251 views

Order of operator overload resolution involving temporaries

Consider the following minimal example: #include <iostream> using namespace std; class myostream : public ostream { public: myostream(ostream const &other) : ...
8
votes
3answers
397 views

C++ member-function chaining return types and derived classes

Given this contrived example: struct point_2d { point_2d& x( int n ) { x_ = n; return *this; } point_2d& y( int n ) { y_ = n; return *this; } int x_, y_; }; ...
8
votes
9answers
352 views

Nonstatic member as a default argument of a nonstatic member function

struct X { X():mem(42){} void f(int param = mem) //ERROR { //do something } private: int mem; }; Can anyone give me just one reason as to why the hell this is illegal in C++?! ...
8
votes
2answers
308 views

Why are some operators in C++ only allowed to be overloaded as member functions?

The operators are = () [] -> ->* conversion operators These can be declared only as member functions. Any other operator function can be either a class member or a non-member function. What is the ...
6
votes
1answer
494 views

C++11 Lambda Functions inside member methods inherit scope

I've written a function foreach that accepts a lambda function ala: void foreach(void (*p)(pNode)) { /* ... */ } Which works as intended if I pass a lambda function from the main loop: int a = 5; ...
6
votes
4answers
1k views

C++ volatile member functions

class MyClass { int x, y; void foo() volatile { // do stuff with x // do stuff with y } }; Do I need to declare 'x' and 'y' as volatile or will be all member variables ...
6
votes
2answers
2k views

Operator overloading : member function vs. non-member function?

I read that an overloaded operator declared as member function is asymmetric because it can have only one parameter and the other parameter passed automatically is the 'this' pointer. So no standard ...
6
votes
5answers
467 views

Class member functions instantiated by traits [policies, actually]

I am reluctant to say I can't figure this out, but I can't figure this out. I've googled and searched Stack Overflow, and come up empty. The abstract, and possibly overly vague form of the question ...
6
votes
7answers
381 views

Is there a practical benefit to casting a NULL pointer to an object and calling one of its member functions?

Ok, so I know that technically this is undefined behavior, but nonetheless, I've seen this more than once in production code. And please correct me if I'm wrong, but I've also heard that some people ...
5
votes
3answers
101 views

why can't a volatile object call nonvolatile member function

Why can't a volatile object call a non-volatile member function? In case of const, it makes sense that calling a non-const member function violates the constness of the the object and hence it is ...
5
votes
4answers
611 views

C++ typedef member function signature syntax

I want to declare type definition for a member function signature. Global function typedefs look like this: typedef int (function_signature)(int, int); typedef int (*function_pointer) (int, int); ...
5
votes
2answers
145 views

no matching function in template class

I get no matching member function error when i try to compile this code on my mingw32 compiler #include <iostream> using std::cout; template <class T> class Pattern { public: ...
4
votes
2answers
115 views

Mutual return types of member functions (C++)

Is it possible in C++ to have two classes, let's call them A and B, such that A has a member function f that returns an object of class B, and B has a member function g that returns an object of class ...
4
votes
4answers
67 views

const member function clarification needed

I'm a little confused as to why this code compiles and runs: class A { private: int* b; public: A() : b((int*)0xffffffff) {} int* get_b() const {return this->b;} }; int main() { A ...
4
votes
5answers
279 views

How to tell if class contains a certain member function in compile time

say there are 2 classes: struct A{ int GetInt(){ return 10; } }; struct B{ int m; }; I want to use object of type A or B in following function tempate< typename T > int GetInt( const T & ...
3
votes
4answers
455 views

Member function pointer in C++ for_each

I'm developing a small Virtual Machine in C++ for a school project, which should work like dc command, and is composed of a Input Output element, a Chipset, a Cpu and Ram. I'm currently working on the ...
3
votes
1answer
105 views

Is there anyway to use a member function as a default parameter?

It tried something like this, which doesn't work. Is there a way to get a similar effect? class A { public: int foo(); void bar(int b = foo()); };
3
votes
2answers
482 views

C++0x | Why std::atomic overloads each method with the volatile-qualifier?

The following excerpt from the current draft shows what I mean: namespace std { typedef struct atomic_bool { bool is_lock_free() const volatile; bool is_lock_free() const; ...
3
votes
1answer
158 views

How to declare a friend that is a member function of another not yet defined class in C++?

How I declare B's constructor to be a friend of A? I tried: class A { private: A(); public: friend B::B(); }; class B { public: B(); };
3
votes
4answers
232 views

When do we need a .template construct

I made the following program #include <iostream> #include <typeinfo> template<class T> struct Class { template<class U> void display(){ ...
3
votes
1answer
184 views

CPP templated member function specialization

I'm trying to specialize the member function moment() only (not the hole class) like this: template<class Derived, class T> class AbstractWavelet { public: [...] template<bool ...
3
votes
2answers
119 views

What all is not permitted with const member functions?

class A{ private: int a; public: A() {a = 4;} const int& random1() const {return a; } //int& random2() const {return a; } const int* random3() const {return &a;} ...
3
votes
2answers
227 views

Const Functions and Interfaces in C++

I'll use the following (trivial) interface as an example: struct IObject { virtual ~IObject() {} virtual std::string GetName() const = 0; virtual void ChangeState() = 0; }; Logic dictates ...
2
votes
1answer
36 views

can we use MemberFunction type as template parameter?

if there's a class T{ void M() };, I want to have a template class that can use T::M as template parameter. say something like this: T t; TUser<T::M> user(t); is it possible?
2
votes
3answers
124 views

Partial template specialization - member specialization

Say I have this template class: template<typename T> class MyClass{ public: MyClass(const T& t):_t(t){} ~MyClass(){} void print(){ cout << _t << endl; } private: ...
2
votes
3answers
94 views

Non member function can be declared multiple times while member function can only be declared once?

Non mumber function can be delcared multiple times while member function can only be declared once? Is this right ? My example seems saying yes. But Why ? class Base{ public: int foo(int i); ...
2
votes
4answers
136 views

How C++ object keeps information about its member functions

class A { public : void printSometext() { std::cout << "printing A" << std::endl; } }; class B { public : void printSometext() { ...
2
votes
2answers
341 views

How to call a template member function in a template base class?

When calling a non-templated member function in a base class one can import its name with using into the derived class and then use it. Is this also possible for template member functions in a base ...
2
votes
1answer
348 views

Calling C++ member functions with the thiscall convention

I have an application written in C++ that loads my DLL that is written in Delphi. The application calls an exported function of the DLL and passes it a pointer to an object of a class that has several ...
2
votes
3answers
192 views

Where to put a member function template

An aspect of C++ that periodically frustrates me is deciding where templates fit between header files (traditionally describing the interface) and implemention (.cpp) files. Templates often need to go ...
2
votes
1answer
206 views

c++ member function specialisation of a class that has a template as a parameter

I am working on a template class Array, which accepts another template TRAITS as a parameter. template <typename BASE, typename STRUCT> class Traits { public: typedef BASE ...
2
votes
4answers
810 views

What are all the member-functions created by compiler for a class? Does that happen all the time?

What are all the member-functions created by compiler for a class? Does that happen all the time? like destructor. My concern is whether it is created for all the classes, and why is default ...
2
votes
3answers
368 views

How to specialize member functions based on class template argument

What the question says. In addition, is it possible to do this inline? Here is a small example just to give an idea... template<typename T> class Foo { public: Foo() :z(0.0) {} void do( ...
2
votes
4answers
172 views

Why can't I declare a friend in one class that is a private member of another class?

Given the following code: class Screen; class WindowMgr { WindowMgr& relocateScreen( int r, int c, Screen& s); }; class Screen { friend WindowMgr& WindowMgr::relocateScreen( int ...
2
votes
2answers
222 views

I'm new to C++. Please Help me with the Linked List (What functions to add)?

DEAR All; Hi, I'm just beginner to C++; Please help me to understand: What functions should be in the Linked list class ? I think there should be overloaded operators << and >>; Please ...
2
votes
3answers
427 views

Importance of a singlecolon “:” in C++

Rarely in the regular codes I encounter the a single colon in classes for e.g.: A::member():b(),c() { } What is the importance of the single colon over here? Why is it used here? Is it mandatory ...
2
votes
1answer
465 views

C++: Pointer to class member function inside a non-related structure

I've done a bit of reading online as to how to go about this and I think I'm doing it correctly... My goal is to have an array of structure objects that contain pointers to member-functions of a ...
1
vote
3answers
40 views

Inherited member function accessing data members

Consider the sample code below: #include <iostream> using namespace std; class A { private: static int a; int b; protected: public: A() : b(0) {} ...
1
vote
1answer
150 views

Get memory address of member function?

How do I get the absolute address of a member function in C++? (I need this for thunking.) Member function pointers don't work because I can't convert them to absolute addresses (void *) -- I need to ...
1
vote
2answers
173 views

Call AfxBeginThread with class member function?

How can I call AfxBeginThread with an arbitrary non-static class method? Maybe there is something I can do with boost bind? Below is the expected usage from Microsoft (and is an example of calling a ...
1
vote
4answers
127 views

How to apply sizeof() operator to non-static class member methods?

struct MyClass { int foo () { return 0; } }; unsigned int size = sizeof(MyClass::foo); // obviously error Can we apply sizeof() to member methods from outside the class ? Do we need to declare ...
1
vote
5answers
762 views

static member functions and thread-safety

Objects and variables created in a static member function are not considered 'local' as they would in a member function, so that they can now be shared amongst multiple threads right? Whereas if you ...
1
vote
2answers
214 views

C++: Access to a public member function from outside of a class

I have a class defined in a separate file and at some point I need to access one of the public member functions from another source file. For some reason, I forgot how to do that and compiler gives me ...
1
vote
3answers
319 views

Error C2275 caused by template member function. Is this code wrong?

I think I've run into a (possible) VC6 (I know. It's what we use.) compiler error, but am open to the fact that I've just missed something dumb. Given the following code (It's just an example!): ...
1
vote
3answers
271 views

const type qualifier soon after the function name

Might be a basic question.Still i am eager to know it from this forum as i like the explanations given here. In C++ some times i see members like below: return_type Function_name( datatype ...
1
vote
3answers
435 views

Determine whether a class has a function

Using a trick (described by Olivier Langlois), I can determine whether a class has a type defined: template<typename T> struct hasType { template<typename C> static char test( ...
1
vote
5answers
425 views

Is it good form to compare against changing values in a loop in C++?

No doubt some of you have seen my recent posting, all regarding the same program. I keep running into problems with it. To reiterate: still learning, not very advanced, don't understand pointers very ...
0
votes
1answer
117 views

error: expected primary-expression before '.' token

I am currently teaching myself C++ using A C++ for Dummies All-In-One; second edition. TO create this program I am using Qt. I understand it to be a good practice to organize objects and classes in ...

1 2