Tagged Questions
in OOP, mechanism for restricting access to some of the object's components
50
votes
9answers
22k views
Why are Python's 'private' methods not actually private?
Python gives us the ability to create 'private' methods and variables within a class by prepending double underscores to the name, like so: *__myPrivateMethod()*. How, then, can one explain this
>>> ...
49
votes
18answers
2k views
Must Dependency Injection come at the expense of Encapsulation?
If I understand correctly, the typical mechanism for Dependency Injection is to inject either through a class' constructor or through a public property (member) of the class.
This exposes the ...
43
votes
23answers
12k views
When should you use 'friend' in C++?
I have been reading through the C++ FAQ and was curious about the friend declaration. I personally have never used it, however I am interested in exploring the language.
What is a good example of ...
35
votes
5answers
13k views
C#: Difference between List<T> and Collection<T> (CA1002, Do not expose generic lists)
Tried to run Run Code Analysis on a project here, and got a number of warnings that said something like this:
CA1002 : Microsoft.Design : Change 'List<SomeType>' in ...
29
votes
9answers
15k views
Abstraction VS Information Hiding VS Encapsulation
Can you tell me what is difference between ABSTRACTION and INFORMATION HIDING in software development?
I am confused abstraction hides detail implementation and
information hiding abstracts whole ...
26
votes
11answers
914 views
Why is the amount of visibility on methods and attributes important?
Why shouldn't one leave all methods and attributes accessible from anywhere (i.e. public)?
Can you give me an example of a problem I can run into if I declared an attribute as public?
21
votes
8answers
1k views
C# marking member as “do not use”
public class Demo
{
private List<string> _items;
private List<string> Items
{
get
{
if (_items == null)
_items = ...
19
votes
12answers
2k views
Getters and Setters are bad OO design?
Getters and Setters are bad
Briefly reading over the above article I find that getters and setters are bad OO design and should be avoided as they go against Encapsulation and Data Hiding. As this is ...
19
votes
15answers
21k views
difference between abstraction and encapsulation?
What is the precise difference between encapsulation and abstraction?
18
votes
11answers
615 views
Properties vs. Fields: Need help grasping the uses of Properties over Fields
First off, I have read through a list of postings on this topic and I don't feel I have grasped properties because of what I had come to understand about encapsulation and field modifiers (private, ...
17
votes
5answers
438 views
Not Using Getters and Setters
I'm making a very simple class to represent positions in 3D space.
Currently, I'm just letting the user access and modify the individual X, Y and Z values directly. In other words, they're public ...
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
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
8answers
1k views
TDD, DDD and Encapsulation
After several years of following the bad practice handed down from 'architects' at my place of work and thinking that there must be a better way, I've recently been reading up around TDD and DDD and I ...
16
votes
11answers
1k views
Is OO design's strength in semantics or encapsulation?
Object-oriented design (OOD) combines data and its methods. This, as far as I can see, achieves two great things: it provides encapsulation (so I don't care what data there is, only how I get values I ...
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
3answers
2k views
Can you explain this thing about encapsulation?
In response to What is your longest-held programming assumption that turned out to be incorrect? question, one of the wrong assumptions was:
That private member variables were
private to the ...
13
votes
8answers
1k views
Doesn't Spring's dependency injection break information hiding?
Coming from a C++ background I have to master the complexity of the Java
world and its frameworks. Looking at the spring framework for DI I am
finding it difficult to believe that I have to make ...
13
votes
22answers
2k views
Private vs. Public members in practice (how important is encapsulation?)
One of the biggest advantages of object-oriented programming is encapsulation, and one of the "truths" we've (or, at least, I've) been taught is that members should always be made private and made ...
12
votes
2answers
442 views
Where to draw the line between Clojure and Java?
I have an interesting architectural question regarding an application that I am developing using both Clojure and Java. The application involves a lot of intensive, concurrent data processing tasks ...
12
votes
3answers
6k views
SQL Server: How to permission schemas?
Inspired by various schema related questions I've seen...
Ownership chaining allows me to GRANT EXECUTE on a stored procedure without explicit permissions on tables I use, if both stored procedure ...
11
votes
5answers
394 views
What is wrong with making a unit test a friend of the class it is testing?
In c++; I have often made a unit test class a friend of the class I am testing. I do this because I sometimes feel the need to write a unit test for a private method, or maybe I want access to some ...
11
votes
3answers
249 views
Is there a standard Cyclic Integer Class in C++?
I have a problem that is quite common in the code that I am writing at the moment whereby I want to have an integer that can only exist inside a certain range where the range is [start, end). ...
11
votes
4answers
633 views
C++ private virtual inheritance problem
In the following code, it seems class C does not have access to A's constructor, which is required because of the virtual inheritance. Yet, the code still compiles and runs. Why does it work?
class A ...
11
votes
12answers
537 views
Why stick to get-set and not car.speed() and car.speed(55) respectively?
Apart from unambiguous clarity, why should we stick to:
car.getSpeed() and car.setSpeed(55)
when this could be used as well :
car.speed() and car.speed(55)
I know that get() and set() are useful to ...
11
votes
2answers
3k views
When would you use the “protected internal” access modifier?
As you may already know, the .NET Framework's protected internal access modifier works in a strange way: It doesn't mean the class is protected AND internal, it says the class is protected OR ...
10
votes
9answers
624 views
How to use Dependency Injection without breaking encapsulation?
How can i perform dependency injection without breaking encapsulation?
Using a Dependency Injection example from Wikipedia:
public Car {
public float getSpeed();
}
Note: Other methods and ...
10
votes
3answers
387 views
Prefer extension methods for encapsulation and reusability?
edit4: wikified, since this seems to have morphed more into a discussion than a specific question.
In C++ programming, it's generally considered good practice to "prefer non-member non-friend ...
10
votes
7answers
441 views
Why “private” methods in the object oriented?
I understand it is a very basic concept in the oops. But still I cannot get my head around. I understood why member variables are private, so class user cannot abuse it by setting up invalid values.
...
10
votes
6answers
1k views
I can't create a clear picture of implementing OOPS concepts, though I understand most of the OOPS concepts. Why? [closed]
I have been working on some of the projects of my own and dont have any indrustial exposure. Currently i use simple approach for developing small applications with negligible OO approach like creating ...
10
votes
7answers
1k views
Is it worth wrapping a logging framework in an additional layer?
I'm currently looking at upgrading the logging mechanism in a medium-to-large-sized Java codebase. Messages are currently logged using static methods on a Debug class, and I have recommended switching ...
9
votes
4answers
219 views
When should I prefer non-member non-friend functions to member functions?
Meyers mentioned in his book Effective C++ that in certain scenarios non-member non-friend functions are better encapsulated than member functions.
Example:
// Web browser allows to clear something
...
9
votes
4answers
312 views
SessionsHelper in railstutorial.org: Should helpers be general-purpose modules for code not needed in views?
railstutorial.org has a suggestion which strikes me as a little odd.
It suggests this code:
class ApplicationController < ActionController::Base
protect_from_forgery
include ...
9
votes
3answers
297 views
Advantages to Nested Classes For Listeners in GUIs
For decently sized projects I've been told that when you have classes extending JPanels that the best practice is to use nested classes to implement the listeners. For example I could have a class ...
8
votes
4answers
115 views
Pattern for Creating a Simple and Efficient Value type
Motivation:
In reading Mark Seemann’s blog on Code Smell: Automatic Property he says near the end:
The bottom line is that automatic properties are rarely appropriate.
In fact, they are only ...
8
votes
3answers
200 views
Program execution is non sequential. Why?
I was fooling around with how I could set up my encapsulation.
But my program is executing in an unexpected order. Here is my rather simple code:
The "Main":
package research.debug;
public class ...
8
votes
4answers
314 views
Is there any workaround for making a structure member somehow 'private' in C?
I am developing a simple library in C, for my own + some friends personal use.
I am currently having a C structure with some members that should be somehow hidden from the rest of the application, as ...
8
votes
10answers
10k views
Java: Good way to encapsulate Integer.parseInt()
I have a project in which we often use Integer.parseInt() to convert a String to an int. When something goes wrong (for example, the String is not a number but the letter 'a', or whatever) this method ...
8
votes
8answers
584 views
What methods are there to modularize C code?
What methods, practices and conventions do you know of to modularize C code as a project grows in size?
8
votes
10answers
599 views
Java: how to handle a LOT of fields and their encapsulation cleanly?
Let's say I am tasked with coding some kind of an RPG. This means that, for example, I'll want to track a Character GameCharacter and stats thereof, like intelligence, damage bonuses or hitpoints.
...
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 ...
8
votes
5answers
1k views
How can I expose iterators without exposing the container used?
I have been using C# for a while now, and going back to C++ is a headache. I am trying to get some of my practices from C# with me to C++, but I am finding some resistance and I would be glad to ...
7
votes
6answers
157 views
Any reason to use auto-implemented properties over manual implemented properties?
I understand the advantages of PROPERTIES over FIELDS, but I feel as though using AUTO-implemented properties over MANUAL implemented properties doesn't really provide any advantage other than making ...
7
votes
4answers
150 views
C# Design Problem Regarding Data Encapsulation
I have four classes:
1: one that owns the data
2: another that updates the data
3: third that is informed by the first about certain changes of the data
4: last that reads certain properties from the ...
7
votes
5answers
246 views
Data Encapsulation in Perl?
Hello Perl community on SO. I am using Perl since a few years, but since I am following SO, I recognized that I know Perl not enough.
I wrote I quite big script over the past 4 years and tried to do ...
7
votes
6answers
296 views
Do Ruby's “Open Classes” break encapsulation?
In Ruby, programmers are allowed to change predefined classes. So a really bad programmer could do something like:
class String
def ==(other)
return true
end
end
Obviously, almost no one ...
7
votes
6answers
266 views
Why would you mask a base class member?
I have just learned how to mask a base class member (using new) but am missing the point as to why I would want to do that. Does masking provide us with a certain level of protection as is the case in ...
7
votes
2answers
161 views
In C++, given a member function in class A, can we restrict its access to only class B, without giving B complete friend access to A? [closed]
Possible Duplicate:
clean C++ granular friend equivalent? (Answer: Attorney-Client Idiom)
I've wanted this a couple times and haven't been able to come up with a decent way to do it.
Say ...
7
votes
2answers
591 views
Clojure allows encapsulation and inheritance, but can I combine them?
Here is an overly simplistic example for illustration:
I can encapsulate an implementation detail such as using an atom for a counter:
(defn make-counter
([] (make-counter 0))
([init-val]
...
7
votes
3answers
425 views
Encapsulation in the age of frameworks
At my old C++ job, we always took great care in encapsulating member variables, and only exposing them as properties when absolutely necessary. We'd have really specific constructors that made sure ...