Tagged Questions

5
votes
4answers
907 views

C++ Overload Static Function with Non-Static Function

I would like to print two different things depending on whether a function is called statically with Foo::print() or from an instance of Foo foo; foo.print(); EDIT: Here is a class definition that ...
5
votes
4answers
13k views

What does “operator = must be a non-static member” mean? (C++)

I'm in the process of creating a double-linked list, and have overloaded the operator= to make on list equal another: template<class T> void operator=(const list<T>& lst) { ...
2
votes
4answers
215 views

Register non-static C++ methods in Lua

I'm trying to make a small C++/Lua system where I would create my objects and attach behaviors to them in Lua. Right now I'm using LuaWrapper (a small header with basic C++ to Lua stuff), my problem ...
2
votes
3answers
525 views

Non static members as default parameters in C++

I'm refactoring a large amount of code where I have to add an extra parameter to a number of functions, which will always have a value of a member of that object. Something like class MyClass { ...
2
votes
4answers
523 views

static method with polymorphism in c++

I have a weird issue using polymorphism. I have a base class that implements a static method. This method must be static for various reasons. The base class also has a pure virtual method run() that ...
1
vote
3answers
129 views

What is a nonstatic member function?

I am being told that I can't use the 'this' keyword in a class function. I'm coming from c# and i'm used to this working, but the compiler tells me that it can only be used within nonstatic member ...
1
vote
3answers
166 views

c++ static non-static

in c++ where are static or non-static variables stay? I mean in memory. and, When are static or non-static variables initialized? Need someone help me get my thought clear. Thank you! and what ...