Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
466 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
1answer
87 views

Is there a way to have dynamic default arguments?

I'm trying to make a class where the user can modify member variables to change the default arguments of its member functions. class Class { public int Member; public void Method(int ...
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 & ...
4
votes
8answers
285 views

What is better practice when programming a member function?

I have seen member functions programed both inside of the class they belong to and outside of the class with a function prototype inside of the class. I have only ever programmed using the first ...
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
132 views

F#: any way to use member functions as unbound functions?

Is there a way to extract member functions, and use them as F# functions? I'd like to be able to write the following: mystring |> string.Split '\n' |> Array.filter (string.Length >> (=) 0 ...
3
votes
2answers
324 views

Number of args for stored procedure PLS-00306

I have problem with calling for my procedure. Oracle scrams PLS-00306 Error: Wrong number of types of arguments in call to procedure. With my type declaration procedure has exact the same ...
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 ...
3
votes
3answers
881 views

Are preconditions and postconditions needed in addition to invariants in member functions if doing design by contract?

I understand that in the DbC method, preconditions and postconditions are attached to a function. What I'm wondering is if that applies to member functions as well. For instance, assuming I use ...
3
votes
2answers
585 views

Iterate over all members of a object within a function of that object

It would be exceedingly handy if I could do this: var MyObject = function(param1, param2, ... paramN) { this.var1 = stuff; this.var2 = moreStuff; . . . this.varN = nStuff; ...
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
3answers
129 views

How to declare a parent and child class in JavaScript?

The one thing I don't like about javascript is that there are hundreds of ways to do things. What I want to know, is how do I declare a class? Do I use the function() approach? Do I call ...
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
426 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
172 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 2