Tagged Questions
0
votes
1answer
49 views
How can you provide this access specifier protection in python?
Here is the scenario I am currently dealing with.
There is a class called Service. Basically, only a single object of this can be created by a node. Once this object is created it is passed from one ...
0
votes
2answers
61 views
Is there any way to have readonly feature without using get() in get() set() model?
Having the get set model:
public class exampleclass
{
private Something something;
public Something getSomething()
{
return something;
}
public void ...
2
votes
1answer
135 views
How can I write generalized functions to manipulate private properties?
In Matlab, I would like to perform some operations on private members of a class. I would also like to perform this exact same task on other classes as well. The obvious solution is to write a ...
3
votes
5answers
523 views
What is the difference between Protected and Private? [duplicate]
Possible Duplicate:
Private and Protected Members : C++
I don't understand the difference between protected and private members or methods, as I assumed both will hide the member or the ...
-2
votes
2answers
163 views
The difference between private and protected
In PHP there does not seem to be a big disparity between private and protected methods.
I asked why I should use protected in PHP Chatroom and got this answer:
unless you have good reason not to ...
2
votes
5answers
96 views
Privacy in static languages
While I understand the value of implementation/interface distinction, I fail to see why most OO systems issue errors on access to private members.
I indeed wouldn't want to access private members in ...
2
votes
1answer
73 views
why can't i access the private function from within the class?
The following code prints NoMethodError. I don't understand the reason . Though the method i am calling is private but i am calling it from within the class.Can't a class var access it's private ...
0
votes
1answer
641 views
PHP Private variable access from child
so I'm trying to work out an issue I'm having in designing PHP classes. I've created a base class, and assigned private variables. I have child classes extending this base class, which make reference ...
0
votes
2answers
172 views
Using Private Static Methods OOP Concept
I have a doubt here where after so much explainations I still don't really get the point. Why do we need to declare a Private Static Methods? Since the method is private it can be only accessed by the ...
2
votes
2answers
107 views
JS Private methods not redefined at each constructor call
How do you make a Javascript private method that is not redefined each time you call the constructor ?
As far as I know, in OOP-JS, private methods are methods defined in the "constructor method" of ...
1
vote
6answers
202 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 ...
0
votes
1answer
118 views
How to access private attributes inside an inherited method in JavaScript
I am trying to call a inherited method that must access private attributes from current object. But it only access the public ones, what is wrong?
My test code should alert both vars:
...
1
vote
1answer
352 views
How to properly implement method affecting private parts of different classes
Whenever I face a situation when atomic method should access private parts of different classes, the IMHO-fundamental impossibility of OOP to correctly implement such thing frustrates me.
Consider a ...
0
votes
3answers
60 views
Why you can change the value of private attributes (which are objects)?
Can somebody tell me why this is possible? An private attribute should only be changable from the class itself. s::$c is readable (getC()) but why I can write to it?
<?php
class s{
private ...
1
vote
2answers
221 views
Restricting access to methods of a class
I have a class A which has public methods and used by 100 other classes implemented in different applications. Now I want to make those public methods as private so that no new classes access them, ...
1
vote
5answers
273 views
Can you modify a private field of a super class?
I'm working with a closed-source base class. Can I somehow change a private field in the base class from my inheriting class?
Assuming the following class structure:
public class Parent
{
...
1
vote
8answers
276 views
Accessing Private Function From Outside Class
I'm learning OO stuff, and came across this:
class n{
private function f($v){
return $v*7;
}
function c(){
return $this->f(5);
}
}
$o = new n;
echo $o->c(); ...
0
votes
2answers
70 views
Attributes: Access Designation
While I was refering to a book , I got the following statements:
When a data type or method is defined as public , Other Objects can directly access it. When a data type or method is defined as ...
1
vote
1answer
314 views
Inspecting and editing private/protected properties of objects
In MATLAB 2011b, I have some classes that have a number of private or protected class properties. This is by design, as I do not want these to be viewable, readable, writable, etc. by anything other ...
0
votes
2answers
45 views
var's I keep declaring the same things over again
Not sure if there is away to do what I want, I basically need to store the following information in a global var, and if they are being requested, then be able to fetch them from any public function ...
5
votes
2answers
155 views
Does the 'private' access modifier give the compiler more room for optimization?
Does it allow the compiler to inline it, knowing that only functions in the same class can access it? Or is it only for the programmer's convenience?
0
votes
3answers
124 views
How to access private method from another private method in Javascript
I was wondering if it was possible to call a private method from another private method on Javascript. I have some code like the following:
function Balloon() {
function density( altitude, gas ) {
...
3
votes
4answers
210 views
Just how reserved are the words private and public in JavaScript
Each time I build a JS library I have this sort of concept:
(function(window,undefined){
var LibName = function(){
var privateAPI = {
method: function(){}
};
var publicAPI = {
...
1
vote
3answers
442 views
what is the difference between internal and private
In F# what is the difference between an internal method and a private method.
I have a feeling that they are implemented the same, but mean something different.
3
votes
7answers
148 views
Examples of why declaring data in a class as private is important?
I understand that only the class can access the data so therefore it is "safer" and what not but I don't really understand why it is such a big deal. Maybe it is because I haven't made any programs ...
2
votes
2answers
118 views
Javascript OOP privilige method accessing private method with private paramter as input
I'm trying to change a private member by using a Privileged method that I defined. I created a simple class to give you an example of the current issue I'm having:
// Constructor
function ...
7
votes
5answers
1k views
Reasons to use private instead of protected for fields and methods
This is a rather basic OO question, but one that's been bugging me for some time.
I tend to avoid using the 'private' visibility modifier for my fields and methods in favor of protected.
This is ...
0
votes
6answers
117 views
What is the value of private members here?
If I have two classes A and B, such that B inehrits A. In other words, A is the base class, and B is the derived class.
Now, suppose that class A has private members. Since class B inherited class A, ...
0
votes
1answer
87 views
Is there a way to make [incr Tcl] classes friends?
Is there a way to obtain a friendship between classes in incr Tcl?
Consider the code below.
package require Itcl
::itcl::class A {
private {
proc f { } {
puts "==== A::f"
...
0
votes
1answer
111 views
Can't hide constructor at [incr Tcl]
Consider the code below.
package require Itcl
::itcl::class A \
{
private {
constructor { } { } { puts "==== at A::constructor" }
method f { } { puts "==== at A::f" }
}
}
A a ;# ...
34
votes
11answers
17k views
Does subclasses inherit private fields?
This is an interview question.
Does subclasses inherit private
fields?
I answered "No", because we can't access them using "normal OOP way". But interviewer thinks, that their inherits, ...
2
votes
4answers
1k views
Delphi: writing to the private ancestor's field in descendant class
I need to fix a third-party component. This component's class has private variable which is actively used by its descendants:
TThirdPartyComponentBase = class
private
FSomeVar: Integer;
public
...
1
vote
3answers
894 views
Why protected and private attributes are accessible by same class rather than by the same object?
For example, we have the class Man
If Man.age is protected, then I don't see why chuckNorris (instance of class Man) can change the protected/private attribute age of the object jackBauer (another ...
0
votes
2answers
148 views
When should private methods in PHP work on class variables, and when should such methods be used as functions?
I'm wondering when private/protected methods should work on the class it's variables (like $this->_results) and when such methods should be used as if they were functions (like ...
2
votes
4answers
2k views
Reasons to avoid access modifiers in php
What are valid reasons NOT to use keywords public, private, protected in php?
The story: I've started a project with a team that actively uses access modifiers in their code (even "public" ...
3
votes
2answers
2k views
Private class (not class method) in a Ruby module?
I'm new to Ruby (experienced with Python, C++ and C). I need to create a class that is only to be used by other classes and methods in a module. In Python, I'd just call it __classname. I'd use an ...
1
vote
2answers
180 views
Object Oriented Private Variable
What are other purposes of private method/variable other than for protection.
4
votes
2answers
1k views
simulate private variables in python [duplicate]
Possible Duplicate:
private members in python
I've got few variables I really want to hide because they do not belong outside my class. Also all such non-documented variables render ...
7
votes
1answer
836 views
Accessing “Public” methods from “Private” methods in javascript class
Is there a way to call "public" javascript functions from "private" ones within a class?
Check out the class below:
function Class()
{
this.publicMethod = function()
{
...
1
vote
2answers
244 views
private vs public inheritence
I have a question based on this question
In the section
http://www.parashift.com/c%2B%2B-faq-lite/private-inheritance.html#faq-24.3
the following is mentioned:
A legitimate, long-term use for ...
4
votes
7answers
399 views
object-private Vs class-private
Is there a notion of object-private in any OOP language ?? I mean more restrictive than the classic private access ?
Private (or class-private) restricts the access to the class itself. Only methods ...
3
votes
3answers
2k views
abstract method override in Derived class, how to make private
Hi I have a class "A" with as abstract method
protected abstract List<Contributor> GetContributors(List<SyndicationPerson> contributersList);
I want to override this method in derived ...
1
vote
2answers
4k views
Using Prototype's Class.create to define private/protected properties and methods
There is a good generalized method for defining private and protected properties and methods in Javascript, here on the site. However, the current version of Prototype (1.6.0) doesn't have a built-in ...
2
votes
5answers
657 views
Examples in Test Driven Development By Example by Kent Beck
I'm reading through Test Driven Development: By Example and one of the examples is bugging me. In chapter 3 (Equality for all), the author creates an equals function in the Dollar class to compare two ...
7
votes
7answers
366 views
Should you refactor code into private methods if they aren't called more than once?
Is it worth extracting private methods for code that only gets called once in a class, or leaving the code in the parent method (maybe) with a comment that says what it does?
6
votes
7answers
1k views
Parameter vs. Member variables
I've recently been working with someone else's code and I realized that this individual has a very different philosophy regarding private variables and method parameters than I do. I generally feel ...
3
votes
4answers
401 views
Inheriting from protected classes in C+++
Suppose I have the following declaration:
class Over1
{
protected:
class Under1
{
};
};
I know that I could do the following:
class Over2 : public Over1
{
protected:
...