Tagged Questions
In object oriented programming, private members are those data fields, properties, or methods of a class that are only accessible from within the class itself.
83
votes
9answers
2k views
Why are private fields private to the type, not the instance?
In C# (and many other languages) it's perfectly legitimate to access private fields of other instances of the same type. For example:
public class Foo
{
private bool aBool;
public void ...
19
votes
22answers
1k views
Should I document my private methods?
Private methods documentation can only be seen by who has access to the source code. Is it worth the effort spent on it?
17
votes
2answers
428 views
Why can private member variable be changed by class instance?
class TestClass
{
private string _privateString = "hello";
void ChangeData()
{
TestClass otherTestClass = new TestClass();
otherTestClass._privateString = "world";
}
}
...
16
votes
10answers
716 views
Purpose of private members in a class
What are the purposes of having private/protected members of a class/structure in object-oriented programming? What's the harm in having all members be public?
14
votes
9answers
702 views
How do you take decision to define a variable “private”?
I have attended a job interview. The interviewer asked me why you need private variable. If you achieve something by defining a variable private, can't you achieve the same by defining any other ...
14
votes
6answers
517 views
Is private member hacking defined behaviour?
I have the following class:
class BritneySpears
{
public:
int getValue() { return m_value; };
private:
int m_value;
};
Which is an external library (that I can't change). I obviously ...
11
votes
5answers
298 views
Why do objects of the same class have access to each other's private data?
Why do objects of the same class have access to each other's private data?
class TrivialClass {
public:
TrivialClass(const std::string& data) :
mData(data) {};
const std::string& ...
11
votes
5answers
204 views
Forced Garbage collection or reflection to a Private field, which is less evil?
We have a third party library that internally uses a SafeHandle to an unmanaged resource. In some error cases it is necessary to dispose of the object and recreate it. But, there is a bug in the ...
11
votes
10answers
744 views
C# Private members visibility
We have a Student class in our business model. something struck me as strange, if we are manipulating one student from another student, the students private members are visible... this strikes me as a ...
10
votes
5answers
334 views
Why make private inner class member public in Java?
What is the reason of declaring a member of a private inner class public in Java if it still can't be accessed outside of containing class? Or can it?
public class DataStructure {
// ...
...
10
votes
6answers
2k views
How to make instance variables private in Ruby?
Is there any way to make instance variables "private"(C++ or Java definition) in ruby? In other words I want following code to result in an error.
class Base
def initialize()
@x = 10
end
end
...
8
votes
9answers
1k views
Hiding members in a C struct
I've been reading about OOP in C but I never liked how you can't have private data members like you can in C++. But then it came to my mind that you could create 2 structures. One is defined in the ...
8
votes
3answers
790 views
Deleting object with private destructor
How is that possible that it is allowed to delete object with private destructor in the following code? I've reduced real program to the following sample, but it still compiles and works.
class ...
8
votes
16answers
12k views
Can I access private members from outside the class without using friends?
Disclaimer
Yes, I am fully aware that what I am asking about is totally stupid and that anyone who would wish to try such a thing in production code should be fired and/or shot. I'm mainly looking ...
7
votes
3answers
379 views
Why and how does C# allow accessing private variables outside the class itself when it's within the same containing class?
I don't know if the question is descriptive enough but why and how does this behaviour exist?:
public class Layer
{
public string Name { get; set; }
private IEnumerable<Layer> ...
7
votes
3answers
2k views
Private members in CoffeeScript?
does somebody know how to make private, non-static members in CoffeeScript? Currently I'm doing this, which just uses a public variable starting with an underscore to clarify that it shouldn't be used ...
7
votes
7answers
884 views
Why is it allowed to access Java private fields?
Consider this example :
import java.lang.reflect.Field;
public class Test {
public static void main(String[] args) {
C c = new C();
try {
Field f = ...
6
votes
5answers
4k views
Access to private inherited fields via reflection in Java
I founded a way to get inherited members via class.getDeclaredFields();
and acces to private members via class.getFields()
But i'm looking for private inherited fields.
How can i achieve this?
6
votes
7answers
2k views
Private Member Access Java
Is the private member access at the class level or at the object level. If it is at the object level, then the following code should not compile
class PrivateMember {
private int i;
public ...
5
votes
4answers
105 views
Declaring Arrays in Private Part of Class
I've got a class, and part of the input into the class is a vector (called Data) of variable length (lets say it has length N). I've included this after the function:
N = data_->size();
In ...
5
votes
4answers
93 views
With a private modifier, why can the member in other objects be accessed directly?
I have the following code:
class A
{
private:
int x;
public:
A()
{
x = 90;
}
A(A a1, A a2)
{
a1.x = 10;
a2.x = 20;
}
int getX()
{
...
5
votes
4answers
250 views
How to do unit testing on private members (and methods) of C++ classes
I am very new to unit testing and I am a little confused.
I am trying to do unit testing (using the Boost unit testing framework) on a C++ class called VariableImpl. Here are the details.
class ...
5
votes
5answers
181 views
What is the use of private static member functions?
I was looking at the request parser from the boost::asio example and I was wondering why the private member functions like is_char() are static? :
class request_parser
{
...
private:
static ...
5
votes
4answers
341 views
Naming convention for private fields
First, I know this question has been asked several times before and that in the end, it is mostly a matter of personal preference, but reading all the threads about the subject, some things are not ...
5
votes
2answers
205 views
Is there a way to write an equality test for a VBA class with private members without exposing knowledge of the existence of those private members?
I do a fair amount of Excel VBA programming, but not a lot of it is object-oriented. Here is something that comes up every now and then that bugs me, and I'm wondering if there's something I'm ...
5
votes
1answer
1k views
Declaring private member variables
I've started learning Objective-C a few weeks ago and I still don't understand how to manage the encapsulation of a class correctly. What is the best way to declare a private member variable in a ...
5
votes
3answers
263 views
Does declaring a variable as “private” in C# protect the memory in windows from being accessed by a memory scanner?
My workmate always tells me that if we declare anything as "public" then it is dangerous because then any program can access that memory and that the solution is to use the "private" access modifier.
...
5
votes
1answer
121 views
Javascript: should I be hiding my implementations?
As a C# programmer, I have a bit of a habit of making things private that can and should be private, and I always get a weird feeling when a JS type exposes all its private parts to me (and that ...
5
votes
3answers
4k views
Private members when extending a class using ExtJS
I have done some research on the ExtJS forum regarding private methods and fields inside a extended class, and I couldn't find any real answer to this.
And when I say an extended class I mean ...
5
votes
4answers
1k views
What is the benefit of private name mangling in Python?
Python provides private name mangling for class methods and attributes.
Are there any concrete cases where this feature is required, or is it just a carry over from Java and C++?
Please describe a ...
5
votes
13answers
1k views
Accessing private members
Is it ethical to access a class' private members by casting it to a void pointer and then to a struct?
I don't think I have permissions to modify the class that contains the data members that I ...
4
votes
4answers
91 views
Accessing private members in a class
I need to access an object from a DLL, do some manipulations to the object and feed the object to another function. The trouble is the fields I need to change are private.
I don't want to change the ...
4
votes
2answers
106 views
C#: Unittesting with private static members?
I have a class with a construct like this:
private static Dictionary<Contract, IPriceHistoryManager> _historyManagers = new Dictionary<Contract, IPriceHistoryManager>();
and lets say 2 ...
4
votes
6answers
402 views
Incomplete type in class
I have a class that should have a private member of the same class. So like this -
class A{
private:
A member;
}
But it tells me that member is an incomplete type. Why? It doesn't tell ...
4
votes
1answer
276 views
Private Properties in MooTools 1.3+ Classes
I've spent the last couple days researching a way to have private or protected properties in MooTools classes. Various articles (ie, Sean McArthur's Getting Private Variables in a MooTools Class) ...
4
votes
2answers
250 views
Rhino Mocks problems with private setter in stub
Error:
You are trying to set an expectation
on a property that was defined to use
PropertyBehavior. Instead of writing
code such as this: mockObject.Stub(x
=> x.SomeProperty).Return(42); ...
4
votes
1answer
143 views
Custom Attribute - Set Attribute Usage for Only Private Members
I creating a custom attribute and I would like to the set the AttributeUsage (or maybe some other attribute in the attribute class) so that I my attribute can only be used in private methods, is that ...
4
votes
1answer
134 views
In what circumstances are instance variables declared as '_var' in 'use fields' private?
I'm trying to understand the behavior of the fields pragma, which I find poorly documented, regarding fields prefixed with underscores. This is what the documentation has to say about it:
Field ...
4
votes
6answers
2k views
Why can outer Java classes access inner class private members?
I observed that Outer classes can access inner classes private instance variables. How is this possible? Here is a sample code demonstrating the same:
class ABC{
class XYZ{
private int ...
4
votes
1answer
252 views
Easy way to access private fields/methods/properties using f# interactive
F# interactive is a powerful development tool as it allows to run either WinForm or Wpf window and invoke arbitrary code in there.
This gives a way for a 'try-before-you code' approach.
Very often I ...
3
votes
3answers
85 views
Switching from C# to C++. What's wrong with my code? do I NEED headers for what I'm trying to do? Class definitions within one file issue
I've been programming in C# for a few years now, as it was my first language. I'm trying to brush up on my c++ because I will be working on something soon that is coded in that.
What is wrong with ...
3
votes
2answers
69 views
Groovy @ symbol before fields
What does @ means before a field name in Groovy? For some classes I am able to access private fields that are not directly accessible, let's take ComposedClosure for example:
public class Person {
...
3
votes
2answers
629 views
Private functions and Variables ExtJs4?
In my current project I am using ExtJs3.3.
I have created many classes which had private variables and functions. For eg:
MyPanel = function(config){
config = config || {};
var bar = ...
3
votes
2answers
365 views
How to create private variables within a namespace?
For my web application, I am creating a namespace in JavaScript like so:
var com = {example: {}};
com.example.func1 = function(args) { ... }
com.example.func2 = function(args) { ... }
...
3
votes
3answers
325 views
Access private elements of object of same class
Is this legal? If not, will the following code allow this?
class Foo
{
friend class Foo;
}
3
votes
1answer
322 views
Private template classes/structs visibility
I don't understand why in the following code, I am allowed to create the function print_private_template while the compiler complains about print_private_class:
#include <cstdio>
class A
{
...
3
votes
4answers
461 views
Private Variables and Methods in Python
Which should I use _foo (an underscore) or __bar (double underscore) for private members and methods in Python?
3
votes
2answers
181 views
In C++, does adding a friend to a class change its memory layout?
Also, does it matter where in the class you declare the friend ?
Does it matter if you add a friend class or a friend function ?
3
votes
2answers
391 views
How to get the private member value in C#
I wanna get the value of a private member, so I wrote the following:
var f = e.
GetType().
GetFields(System.Reflection.BindingFlags.NonPublic |
...
3
votes
7answers
147 views
Breaking public member functions into lots of private member functions
When I write a class's public member function that does several things, like..
void Level::RunLogic(...);
In that function I find myself splitting it up into several private member functions. ...