2
votes
4answers
60 views
Should I encapsulate my IoC container?
I'm trying to decide whether or not it makes sense to go through the extra effort to encapsulate my IoC container. Experience tells me that I should put a layer of encapsulation b …
2
votes
13answers
318 views
Isn’t there a point where encapsulation gets ridiculous?
For my software development programming class we were supposed to make a "Feed Manager" type program for RSS feeds. Here is how I handled the implementation of FeedItems.
Nice an …
0
votes
3answers
63 views
Abstraction of behavioural logic - is there a design pattern?
Hi all,
I need to abstract some behavioural code and have a problem trying to reference the objects in the class that is calling these behaviours, let me try to explain:
My "pare …
0
votes
3answers
44 views
What technologies are good for sending encapsulated data, and later converting it, between Python and Objective-C?
Hello! I'm attempting to create a client/server web-app. The client software is written in Objective-C (Mac), and the server software is written in Python (Linux). I'd like to e …
0
votes
1answer
13 views
Recommendations on how to decouple services (RSS, REST API) from my UI (webforms) when they share a common model?
I have a web application that is arranged into data, business and UI projects. As the system evolves changes are deployed by building all three projects and deploying them in one p …
2
votes
3answers
158 views
Doesn’t Passing in Parameters that Should Be Known Implicitly Violate Encapsulation?
I often hear around here from test driven development people that having a function get large amounts of information implicitly is a bad thing. I can see were this would be bad fr …
1
vote
4answers
54 views
Erasing a vector element by key
ive defined the following and filled it with elements:
vector <vector<double> > my_vector;
but i want a delete an element with a specific key...
my_vector.erase(int …
2
votes
2answers
98 views
In C#, can a method return List such that clients can only read it, but not write to it?
Let's say I have a C# class:
class Foo
{
private List<Bar> _barList;
List<Bar> GetBarList() { return _barList; }
...
}
A client can call it:
var barList = f …
4
votes
9answers
789 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 w …
3
votes
5answers
145 views
“Pinnacle” of Encapsulation - Question Regarding Advice from Effective C++
Item 23 of Effective C++ states: Prefer non-member non-friend functions to member functions.
The whole purpose of the item was to encourage encapsulation, as well as package flex …
3
votes
1answer
101 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))
…
1
vote
7answers
109 views
Access to private Collection fields in Java
One of my classes has a field which contains a Set. This field is only ever filled in the constructor, and then read by other classes. Originally I had something like this:
public …
6
votes
3answers
211 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
…
0
votes
5answers
148 views
Yet another question on mocking…
First let me state that, despite being a fairly new practitioner of TDD, I'm pretty much sold on its benefits. I feel like I've progressed enough to consider using mocks and have …
16
votes
22answers
2k 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 howevever in the interest of exploring the language I was wond …
