Tagged Questions

6
votes
4answers
13k views

What does “operator = must be a non-static member” mean?

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
233 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 ...
0
votes
1answer
38 views

A Beginner Puzzle of Static and Non-Static Classes in OOP ( C# )

A friend of mine (from work) asked me a question. Remove the static keyword from the Dictionary Live from the Members class. Don't use new Members(); to create an instance in Check(...) method. So ...
0
votes
2answers
160 views

how to update a textbox from a static class?

This is driving me nuts. I have a working text based application. It has many many variables which now need a GUI. I'm starting with the basics. Whenever some data is sent to my log, I want it to ...