Tagged Questions
-1
votes
3answers
93 views
Delphi 'private' clause (directive) does not work
I'm trying to check if my private procedures are really private. But it works the way it shouldn't.
Please help me, maybe I missed something about how should incapsulation work.
This code should ...
1
vote
1answer
58 views
Javascript: This in Private context
I would like to access variables created inside a private context. I'm creating a private context like this:
(new Function("var a = 'hello'; console.log('this', this);")).call({});
// outputs -> ...
2
votes
0answers
64 views
JavaScript working with constructor
I have the following script included on my page (myScript.js).
function constr(args) {
var param1 = args;
function drawTable(element, tableRows) {
// code that creates ...
4
votes
3answers
554 views
Passing objects from one private method to another
I have been programming for a little while now, and I have a question on the use of public methods. I am working on a vending machine program, and I have a private method setUpMachine() to initialize ...
1
vote
1answer
93 views
Private object properties
I got a RequireJs module which instances another module and proxies some methods of it. I would now like to hide the module instance itself and only allow access through the proxy-methods.
...
0
votes
3answers
75 views
Scope issue : how to see (not access neither modify !) a private attribute from outside its class?
I'd like to know if there's any way to see (and not access neither modify) a private member from outside its class ?
template <typename type_>
class OBJ1
{
//methods
};
class OBJ2
{
...
2
votes
5answers
224 views
How to grant access to a private method [duplicate]
Possible Duplicate:
What are access specifiers? Should I inherit with private, protected or public?
I am looking for some code or design pattern to grant access to a private method from ...
0
votes
3answers
97 views
How do I retrieve an item from a PHP private Object Array?
I've searched everywhere, IPB forums, google, everywhere.
I couldn't find any documentation from IPB/IP.Nexus forums because they dont have any, it's encrypted with Zend.
What I was trying to do was ...
0
votes
1answer
71 views
How do I access the private data fields of this object in my case?
I'm writing a c++ program that does simple math on complex numbers. I'm having issues with accessing the private data of the ComplexNumber objects. I create two ComplexNumber objects (set1 and set2) ...
1
vote
6answers
203 views
Does Java follow Object Oriented Programming Model fully?
The following code illustrates the situation:
class Human {
private String heart = "default heart";
public void control(Human h) {
h.heart = "$%^&*@@!#^";
}
public ...
3
votes
4answers
259 views
How to prevent others create a new instance of your class on stack ?
Suppose you write a class A, with constructor being private (to prevent others to create it on stack) then one day another developer add a new ctor, say A(int), and want to use inside main():
A a(1)
...
0
votes
3answers
326 views
Using a constructor on a JavaScript static instance
I'm writing a JavaScript library in which I want some methods and properties public and other private. The following seems a great way of doing this whilst wrapping everything up into a single object.
...
3
votes
1answer
279 views
Ruby / IRB: set instance variable to private or otherwise invisible?
In Ruby, when I do something like this:
class Foo
...
def initialize( var )
@var = var
end
...
end
Then if I return a foo in console I get this object representation:
...
0
votes
1answer
166 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
4answers
334 views
Retrieving and editing private members of objects in a vector
I have some code which adds a few objects to a vector. I then wish to retrieve a specific object from the vector and be able to both write out and edit its private member variables.
This is the code ...
0
votes
4answers
1k views
C++ - private data members
If I have a class with private data members, for example, do I say that those data members are not accessible outside the class or they are not accessible outside the objects of that class?
Thanks.
0
votes
4answers
398 views
Copy javascript object with private member
I've looked all around and found nothing to help me. Why on earth can't I clone a javascript object with private members without making them quantum entangled?
Just look at this code... It's a plain ...
2
votes
1answer
3k views
PHP: declare a class variable to be a stdClass object
This is probably pretty simple but I haven't been able to figure out how to phrase the question for Google, so here goes:
So, I often do something like this...
class foo {
private $bar = ...
2
votes
3answers
413 views
Non-static private variables in javascript
I'm setting up my javascript objects like the following
Object1 = function() {
var privateMember = "private value"
return {
publicMember: "public value"
setPrivateMember: function(value) ...
0
votes
4answers
2k views
Why cant we create Object if constructor is in private section?
I want to know why cant we create object if the constructor is in private section. I know that if i make a method static i can call that method using
<classname> :: ...
1
vote
4answers
1k views
C# Reflection - Casting private Object field
I have the following classes:
public class MyEventArgs : EventArgs
{
public object State;
public MyEventArgs (object state)
{
this.State = state;
}
}
public class MyClass
{
...
0
votes
3answers
1k views
C++ keeping a list of objects and calling a constructor through another function
Why isn't my object being created?
And how can I execute AllReferrals.push_back(this); from my constructor?
When I do it like so, I am told
error C2065: 'AllReferrals' : undeclared identifier
...