Tagged Questions
2
votes
3answers
591 views
Javascript new object (function ) vs inline invocation
Is there any considerations to determine which is better practice for creating an object with private members?
var object = new function () {
var private = "private variable";
return {
...
0
votes
1answer
74 views
Calling member function of an object inside a vector
This is a continuation on my previous question here regarding retrieving and editing private members of objects in a vector.
I have a vector full of objects that have private members that I need to ...
0
votes
3answers
246 views
labeling a group of members as private/public in c#
in a c++ class declaration, you can label a group of members as private or public, e.g.
private:
int x;
double y;
seems like there's no way to do this in c#. am I wrong?