python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Can a variable and a method have the same name in C++?
class Controller {
bool isBackendActive();
void anotherMethodDoingSomething();
}
Can I declare a boolean variable with the same name as a method so that I can use it like this:
void Controller::a...

sunshine
Votes: 0
Answers: 2
UI(regression) Test Naming Convention Recommendation
I am looking for recommendations on naming conventions for UI tests. I am using Given-When-Then pattern for naming unit tests. This works well for unit tests because I am using unit test to test a si...
TK-Milwaukee
Votes: 0
Answers: 0
Are user-defined identifiers beginning with a single underscore non-problematic?
Is this identifier non-problematic:
_var
C11, 7.1.3 Reserved identifiers, 1
All identifiers that begin with an underscore are always reserved for use as identifiers with file scope in both the ordin...
pmor
Votes: 0
Answers: 4
What is your suggestion for defining this VOIP web-service?
What is your suggestion about defining routes for such a web-service?
Input:
called number
call date
Output:
caller number
call datetime
call duration
call status
It is the first request ...

Masoud Shariati
Votes: 0
Answers: 1