Tagged Questions

1
vote
4answers
90 views

How much information hiding is necessary when doing code refactoring?

How much information hiding is necessary? I have boilerplate code before I delete a record, it looks like this: public override void OrderProcessing_Delete(Dictionary<stri …
3
votes
7answers
2k 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 …
2
votes
2answers
52 views

how does information hiding helps in modularization?

How does information hiding decouples the modules that compromise a system?
0
votes
4answers
53 views

How does the design of JavaBeans square with information hiding?

Two semesters ago, I had a professor who said: Some of you have been told to always include setter and getter methods for all private instance variables. I say that this breaks …
1
vote
11answers
199 views

Best way to store data between program runs in java?

I was wondering if there was any way other placing the information that is genereated by the program between runs of the program? I already know that you can use a text file and st …
4
votes
5answers
132 views

Information Hiding vs. Hidden Dependencies

Dear StackOverflow, What are some common best practices in procedure (or function, module, etc.) design for balancing the desire for information hiding and an appropriate level of …
2
votes
3answers
88 views

Hiding Complexity by Building Concise Libraries

I'm developing a product with a bunch of interlocking pieces (server, client, libraries, etc) and one of the pieces is a tiny library that users will link into their own client-sid …
4
votes
6answers
377 views

How can you hide information inside a jpg or gif photo?

How can I write some information inside a photo file like jpg or gif without destroying the image? and of course without showing it on the photo since the whole idea is to send inf …
1
vote
2answers
326 views

Use of Frames in Delphi for GUI information hiding

Hi, I have been learning Delphi for the last 3 years, on a hobby/occupational level. I am happy to say that I have now progressed to the point that I can look back on my early code …
4
votes
5answers
288 views

Is it better to pass an *interface* or an *object* as a parameter to a function?

I'm trying to convince a colleague that a function should take an interface as a parameter, and not the object itself. I think small objects can be fine to pass across, but for lar …
0
votes
3answers
79 views

Obfuscation or hiding of server to client state updates

I'm not actually writing this software myself, but it occurred to me that I have no idea how to solve the problem. As the best way to explain the problem, I'll describe a specific …
5
votes
12answers
998 views

Why should the “PIMPL” idiom be used?

Backgrounder: The PIMPL Idiom is a technique for implementation hiding in which a public class wraps a structure or class that cannot be seen outside the library the public class …
1
vote
4answers
559 views

A brilliant example of effective encapsulation through information hiding?

"Abstraction and encapsulation are complementary concepts: abstraction focuses on the observable behavior of an object... encapsulation focuses upon the implementation that gives r …
0
votes
7answers
160 views

What are nested functions? What are they for?

I've never used nested functions, but have seen references to them in several languages (as well as nested classes, which I assume are related). What is a nested function? Why?!? …
18
votes
7answers
3k 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 on …