Tagged Questions
8
votes
2answers
309 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
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;}
...
2
votes
3answers
130 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
2answers
215 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
118 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
52 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 ...