Tagged Questions

8
votes
2answers
314 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 ...
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
2answers
120 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;} ...
2
votes
3answers
135 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 ...
1
vote
4answers
59 views

C++ Class Enumeration Member variable

I have a class with an enumerated type GameStates. In the (public) constructor I initialise GameStates like this: GameStates enumGameState = Ready; Then in a public method run() i have a switch ...
1
vote
2answers
234 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 ...
0
votes
1answer
181 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 ...
0
votes
3answers
54 views

Stack accessible by all member functions of a class

I want all member functions of a class to have access to the same stack. Each member function will push data to the stack and pop data from the stack. I am having a hard time declaring the stack. I ...
-1
votes
2answers
71 views

Python OO — member function definition and keyword self

I am writting a Python class with this constructor: #constuctor def __init__(self, initPt_=[1,1],fun_=Optim_tests.peaks,NITER_=30,alpha_=0.7,NMAX_=5000,FTOL_=10**(-10)): self.initPt = ...