Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 >>> ...
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 ...
13
votes
13answers
4k 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 is part of. This ...
6
votes
8answers
5k 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 information in the file ...
5
votes
2answers
130 views

Command Pattern seems needlessly complex (what am I failing to understand?)

I've read up on the Command Pattern, and I think I'm missing something. The Command object exists to abstract away the details of the Receiver object. It seems to me that we could simply stop here, ...
5
votes
8answers
367 views

Is it possible to hide a password defined within C++ code

... so that browsing the disassembly won't immediately expose the password (declared as a static variable). As an example, imagine a program that has a zip file attached that it must open for assets ...
5
votes
5answers
2k views

How can I implement a robust session-per-request pattern in my project, while focusing on information hiding?

I'm currently building an ASP.NET MVC project, with NHibernate as its persistance layer. For now, some functionnalities have been implemented, but only use local NHibernate sessions: each method that ...
4
votes
5answers
274 views

Information Hiding vs. Hidden Dependencies

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 abstraction in the procedure's interface ...
4
votes
5answers
366 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 large ones I would give ...
3
votes
2answers
155 views

how does information hiding helps in modularization?

How does information hiding decouples the modules that compromise a system?
3
votes
5answers
2k 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 rise to this ...
2
votes
3answers
203 views

Difference in Information hiding and data abstraction?

Is there any difference in Data Abstraction and Information hiding? After going through all the answers in this link I am more confused. Abstraction VS Information Hiding VS Encapsulation Couldn't ...
2
votes
4answers
275 views

Java class containing only private members

Lately I met a situation where I needed to create a custom VideoView to my android application. I needed an access to the MediaPlayer object and to add some listeners. Unfortunately (for me), all ...
2
votes
6answers
243 views

Writing/implementing an API: testability vs information hiding

Many times I am involved in the design/implementation of APIs I am facing this dilemma. I am a very strong supporter of information hiding and try to use various techniques for that, including but ...
2
votes
1answer
814 views

So now struct can have virtual function and support inheritance ? What difference with classes then ? What the true purpose of information hiding? [closed]

Possible Duplicate: What are the differences between struct and class in C++ http://www.cplusplus.com/reference/std/typeinfo/type_info/ I guess my "teacher" didn't tell me a lot about the ...
2
votes
2answers
162 views

Can information encoded with a one time pad be distinguished from random noise?

I understand that the cyphertext from a properly used one time pad cypher reveals absolutely no data about the encrypted message. Does this mean that there is no way to distinguish a message ...
2
votes
2answers
220 views

Creating internal and external interfaces for a class / information hiding

For some classes of a static C++ library I want to offer different interfaces for the user of the library and for the library itself. An example: class Algorithm { public: // method for the ...
2
votes
4answers
329 views

Dependency Injection, Unit Testing, and Information Hiding

Suppose you have a class Foo with private member of type Bar. You don't want users to know that Foo's implementation contains a Bar and you don't want users to be able to create their own Bar and ...
2
votes
8answers
610 views

Where do you put unit tests for private methods?

Where do you put unit tests for private functions in C# classes? An article in Wikipedia suggests: Putting tests in the same class as the members they're testing Using partial classes Personally, ...
2
votes
3answers
201 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-side code (something ...
2
votes
7answers
509 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?!? What can you do ...
1
vote
2answers
57 views

Hiding an #include used by template class from users of the class

Consider the following code spread out along 3 files: // secret.h #pragma once class Secret { /* ... */ }; // foo.h #pragma once #include "secret.h" template <typename T> class Foo { public: ...
1
vote
2answers
45 views

OOD - Setting value once so that it cannot be changed

I am trying to understand the principle of information hiding. Suppose that I have a vehicle class with methods such as getSpeed, setSpeed, getEngine, setEngine, getVIN, setVIN, etc. To enforce info ...
1
vote
1answer
27 views

How do search engines treat content shown by :target?

For pages with a lot of content I've recently become fond of using css :target to show only the desired content. The code may look something like this: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML ...
1
vote
1answer
68 views

Information hiding when using the prototype object

In our code base, I find that many developers use underscores as the first letter of a member variable to discourage public use. Normally, a better practice is just to declare a local variable that's ...
1
vote
1answer
103 views

hide jboss server information

I want to hide jboss server information from any users. (Servlet 2.5; JBoss- 5.0/JBossWeb-2.1, JSF/1.2) How to do this ?
1
vote
8answers
451 views

Hiding classes in a jar file

is it really impossible to hide some classes in a jar file? I wanted not to allow direct instantiation of the classes to keep it more flexible. Only the factory (or a facade) should be visible of ...
1
vote
4answers
182 views

Is the purpose of an interface to hide information?

Given that interfaces are also used to help hide information, giving the user only a subset of the possible methods they are allowed to use, and, let's say, I have a Person class and interface ...
1
vote
2answers
189 views

Best way to hide a form input field from being accessed using firebug?

I have a form which is posted to an external API. There is a parameter called customer_token which is passed as an input field. It is used for authentication by the API and every customer is assigned ...
1
vote
5answers
266 views

Overloading stream insertion without violating information hiding?

I'm using yaml-cpp for a project. I want to overload the << and >> operators for some classes, but I'm having an issue grappling with how to "properly" do this. Take the Note class, for ...
1
vote
2answers
354 views

Is encapsulation a subset of abstraction?

As both encapsulation and abstraction relate to information hiding, can I understand encapsulation as a subset of abstraction?
1
vote
11answers
953 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 store the information ...
1
vote
2answers
2k views

Use of Frames in Delphi for GUI information hiding

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 with horror and ...
1
vote
4answers
167 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<string, object> ...
0
votes
3answers
101 views

C++ friend functions/class uses?

What is the real use of a friend function/class in C++? Could you give an example where only friend is the right approach? Thanks
0
votes
2answers
205 views

C++ factory method pattern for abstract class

I have to implement a factory method pattern in C++. The class (C) that is to be "assembled" by the factory is abstract and is inherited by some other class (D). So I don't want C to have a ...
0
votes
4answers
137 views

A simpler form of pimpl

Why not choose this design : // A.hpp class A { public: void do_something(); }; // A.cpp #include "A.hpp" #include <vector> std::vector<int> impl_database_for_do_something; static ...
0
votes
4answers
151 views

Why aren't all fields/properties/methods public?

I know this may sound stupid, but i really want to know :) im learning c# currently, and as you know you need to set "object"(button,label,text,variable, etc.) public or whatever you like. However, ...
0
votes
2answers
67 views

Automatically removing contact information from documents

Does anybody know of a good solution that can be used from php that will effectively remove contact information like phone numbers, email addresses and maybe even contact addresses from a document? ...
0
votes
1answer
25 views

I need to reference an image in my code, from two different pages (with different paths to /images)

So, I have a function: public string genSomeHtml(){ //Gen some html including and image called foobar.gif } Now, I want to call genSomeHtml() from two different pages, but they have different ...
0
votes
1answer
317 views

template specialization inside class namespace

How to specialize a template defined in some external namespace in the body of my class? Concrete example using BGL which doesn't compile: class A { namespace boost { template <class ...
0
votes
3answers
579 views

How to encrypt information in aspx page?

I know it's a silly question but , My client asked for encrypting some information form their payment system to prevent user stealing personal information. The system is web-base and written by ...
0
votes
5answers
127 views

What's the most appropriate way to expose lists inside a class?

Imagine the following model: A Table has many Rows A Row has many Cells What would be the preferable interface to deal with these classes in a "object oriented way"? 1 - Provide access to the ...
0
votes
4answers
185 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 information hiding, ...
0
votes
3answers
110 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 scenario from a ...
-2
votes
2answers
147 views

Why some People refer to it as “encapsulation” and other as “information-hiding” ? [closed]

Why some People(OOP Gurus) refer to it as "encapsulation" and other as "information-hiding", as I know they are not 100% the same, though they are really over-lapped, whats the differences in the ...