Tagged Questions
The private tag has no wiki summary.
227
votes
28answers
34k views
What's the proper way to test a class with private methods using JUnit?
How do I use JUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test.
141
votes
20answers
37k views
How do you unit test private methods?
I'm building a class library that will have some public & private methods. I want to be able to unit test the private methods (mostly while developing, but also it could be useful for future ...
130
votes
2answers
23k views
58
votes
6answers
57k views
In Java, what's the difference between public, default, protected, and private?
Are there clear rules on when to use each of these when making classes and interfaces and dealing with inheritance?
50
votes
9answers
2k views
Any reason to write the “private” keyword in C#?
As far as I know, private is the default everywhere in C# (meaning that if I don't write public, protected, internal, etc. it will be private by default). (Please correct me if I am wrong.)
So, ...
50
votes
7answers
10k views
The meaning of a single- and a double-underscore before an object name in Python
I want to clear this up once and for all. Can someone please explain the exact meaning of having leading underscores before an object's name in Python? Also explain the difference between a single and ...
41
votes
8answers
9k views
37
votes
11answers
5k views
What's the best way to unit test protected & private methods in Ruby?
What's the best way to unit test protected and private methods in Ruby, using the standard Ruby Test::Unit framework?
I'm sure somebody will pipe up and dogmatically assert that "you should only unit ...
28
votes
14answers
24k views
static constructors in C++? need to initialize private static objects
I want to have a class with a private static data member (a vector that contains all the characters a-z). In java or C#, I can just make a "static constructor" that will run before I make any ...
22
votes
3answers
9k views
change private static final field using java reflection
I have a class with a private static final field, that unfortunately i need to change at run time.
using reflection i get this error: java.lang.IllegalAccessException: Can not set static final ...
19
votes
6answers
3k views
How do I read a private field in Java?
I have a poorly designed class in a 3rd-party JAR and I need to access one of its private fields. For example,
class IWasDesignedPoorly {
private Hashtable stuffIWant;
}
IWasDesignedPoorly obj = ...
18
votes
5answers
3k 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, ...
16
votes
7answers
570 views
In C# 4.0, is there any way to make an otherwise private member of one class available only to a specific other class?
We're creating an object hierarchy where each item has a collection of other items, and each item also has a Parent property pointing to its parent item. Pretty standard stuff. We also have an ...
16
votes
9answers
909 views
C++ Is private really private?
I was trying out the validity of private access specifier in C++. Here goes:
Interface:
// class_A.h
class A
{
public:
void printX();
private:
void actualPrintX();
int x;
};
...
16
votes
3answers
6k views
Is it possible to set private property via reflection
Can I set a private property via reflection?
public abstract class Entity
{
private int _id;
private DateTime? _createdOn;
public virtual T Id
{
get { return _id; }
...
16
votes
7answers
4k views
Why do we actually need Private or Protected inheritance in C++?
In C++, I can't think of a case in which I would like to inherit private/protected from a
base class:
class Base;
class Derived1 : private Base;
class Derived2 : protected Base;
Is it really ...
15
votes
10answers
1k views
Can a constructor in Java be private?
Can a constructor be private? How is a private constructor useful?
15
votes
8answers
17k views
private final static attribute vs private final attribute
In java, what's de difference between:
private final static int NUMBER = 10;
and
private final int NUMBER = 10;
both are private and both are final, the difference is the static attribute.
What's ...
15
votes
8answers
1k views
Why would a virtual function be private?
I just spotted this in some code:
class Foo {
[...]
private:
virtual void Bar() = 0;
[...]
}
Does this have any purpose?
(I am trying to port some code from VS to G++, and this caught my ...
14
votes
4answers
305 views
C++ - What is this doing if the constructor is private?
In the code below, why does the compiler not complain for mClass2?
class CMyClass{
private:
CMyClass(){}
};
void TestMethod(){
CMyClass mClass1; //Fails.
CMyClass mClass2(); //Works.
}
...
13
votes
12answers
2k views
Are private members inherited in C#?
Just seen one tutorial saying that:
Class Dog
{
private string Name;
}
Class SuperDog:Dog
{
private string Mood;
}
Then there was an UML displaying that SuperDog will inherit Name as well. I ...
12
votes
2answers
143 views
Dynamic downcast on private inheritance within private scope
A tweak on this question that I've run into. Consider:
class A {};
class B : private A {
static void foo();
};
void B::foo(){
B* bPtr1 = new B;
A* aPtr1 = dynamic_cast<A*>(bPtr1); // ...
12
votes
9answers
365 views
Private 'set' in C# - having trouble wrapping my brain around it
I've seen a lot of example code written using something like (please forgive how horribly canned this is):
public class Test
{
public object Thingy { get; private set; }
}
Unfortunately, these ...
12
votes
3answers
251 views
delegating into private parts
Sometimes, C++'s notion of privacy just baffles me :-)
class Foo
{
struct Bar;
Bar* p;
public:
Bar* operator->() const
{
return p;
}
};
struct Foo::Bar
{
void ...
12
votes
1answer
312 views
Are there good reasons for 'private' to work the way it does in Ruby?
It took me a while to understand how private methods work in Ruby, and it really strikes me as being very awkward. Does anyone know if there are good reasons for private methods to be handled the way ...
11
votes
4answers
1k views
PHP: Public, Private, Protected
When and why should I use and what's the deference between, public, private and protected functions/variables inside a class?
Examples:
// Public
public $variable;
public function doSomething(){
...
11
votes
7answers
529 views
Why explicitly write “private”?
As fields are implicitly private, why there is often explicit declaraion used in the books, articles etc.?
11
votes
3answers
3k views
Internal vs. Private Access Modifiers
What is the difference between the internal and private access modifiers in C#?
11
votes
6answers
9k views
Does python have 'private' variables in classes?
I'm coming from the Java world and reading Bruce Eckels' Python 3 patterns idioms.
While reading about classes...it goes on to say that in Python there is no need to declare class variables. You ...
9
votes
2answers
280 views
Friend declaration in C++ - difference between public and private
Someone told me that there is a difference between declaring a friend class in the public or private areas of the class, but I can't seem to find anything about this online, and I'm not sure they knew ...
9
votes
3answers
2k views
Confusing “override a private method”
I have two question on this code
public class Override {
private void f() {
System.out.println("private f()");
}
public static void main(String[] args) {
Override po = new ...
9
votes
3answers
2k views
Python inheritance - how to disable a function
In C++ you can disable a function in parent's class by declaring it as private in the child class. How can this be done in Python? I.E. How can I hide parent's function from child's public interface?
9
votes
5answers
3k views
Hiding private data members? (C++)
Is there a way to hide private data members of a C++ class away from its users, in the cpp file? I think of the private members as part of the implementation and it seems a little backwards to ...
8
votes
2answers
92 views
Inaccessible type due to private inheritance
g++ is denying me access to a type, just because it happens to be a private grand-father. Does this make sense?
struct A {};
struct B : private A {};
struct C : B {
void foo(A const& a) {}
};
...
8
votes
5answers
3k views
Protected and private methods in Rails
Method visibility in Ruby (public, protected, and private methods) has been well explained in places like this blog post. But in Ruby on Rails it seems slightly different than it would be in a regular ...
8
votes
3answers
497 views
Why can I access private variables in the copy constructor?
I have learned that I can never access a private variable, only with a get-function in the class. But then why can I access it in the copy constructor?
Example:
Field::Field(const Field& f)
{
...
8
votes
11answers
1k views
Unit testing private code
I am currently involved in developing with C# - Here is some background:
We implement MVP with our client application and we have a cyclomatic rule which states that no method should have a cyclomatic ...
7
votes
2answers
162 views
How do you define a package-private *trait* in Scala?
In Java, it is possible to create package-private interfaces. Looking at them with javap, you see that they lack the "public" visibility.
In Scala, you can declare a trait as private[package] or ...
7
votes
5answers
173 views
Java tool for testing private methods?
There are different opinions on the meaningfulness of testing of private methods, e.g., here and here. I personally think it makes sense, the question is how to do it properly.
In C++ you can use a ...
7
votes
4answers
209 views
Private vs. Static functions in C++
Is there any advantage to using private (probably also static) functions in a class for utility functions used in my class that do not need access to an instance's data over using global static ...
7
votes
6answers
166 views
When would I want to make my private class static?
In general, are there any benefits in declaring a private class as static?
In what cases would I want to use one of the following over the other?
private static class Foo
{
...
}
vs
private ...
7
votes
2answers
299 views
final and private static
I read that doing:
public final void foo() {}
is equals to:
private static void foo() {}
both meaning that the method is not overridable!
But I don't see the equivalence if a method is private ...
7
votes
3answers
3k views
Defining private module functions in python
According to http://www.faqs.org/docs/diveintopython/fileinfo_private.html:
Like most languages, Python has the
concept of private elements:
Private
functions, which can't be called ...
7
votes
4answers
7k views
How to make a real private instance variable?
I want to make an instance variable that can't be accessed from outside. Is something like that possible in objective-c? I remember Apple has private variables and stuff like that, but if people know ...
7
votes
7answers
322 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?
7
votes
28answers
862 views
In Java, is it ever a bad idea to make an object's members publicly available?
I have a data class in my application. My application will never be used as a public API and I will be the only person developing code within my project.
I am trying to save every ounce of ...
6
votes
2answers
234 views
Creating private properties in Objective-C
In Objective-C, there's a sort of hackish way to create private methods, in the .m file:
@interface FooClass (PrivateMethods)
- (void) doBar:(id)barAction withBaz:(id)bazAction;
@end
This works ...
6
votes
2answers
632 views
Does a private @property create an @private instance variable?
I've read that @synthesize will automatically create corresponding instance variables for @property and that ivars are @protected by default. But, what if I use a class extension (like below) to ...
6
votes
4answers
401 views
Java static methods accessing private variables
I was under the impression that private non-static variables could only be accessed by methods called on the object that the variables reside in, but this is not the case. Could someone please explain ...
6
votes
1answer
286 views
Does private mean different things in C++ and C#?
I was wondering why C# doesn't allow private virtual functions and ran across the aptly named Why are private virtual methods illegal in C#?
In the accepted answer Eric Lippert (who probably knows ...