The concepts tag has no wiki summary.
21
votes
11answers
1k views
Is information hiding more than a convention?
In Java, C# and many other strongly-typed, statically checked languages, we are used to write code like this:
public void m1() { ... }
protected void m2() { ... }
private void m2() { ... }
void m2() ...
4
votes
2answers
191 views
How to protect a peer-to-peer network from inappropriate content?
I’m developing a simple peer-to-peer app in .Net which should enable users to share specific content (text and picture files). As I've learned with my last question, inappropriate content can ...
12
votes
5answers
766 views
What problems can arise from emulating concepts from another languages?
I've read many times on the web that if your language doesn't support some concept, for example, object orientation, or maybe function calls, and it's considered a good practice in this other context, ...
0
votes
1answer
95 views
Map Library: Client-side or Server-side?
As I have already asked here, I have to implement a Multi-Platform Map application. Now I have Mapstraction as an option which uses Javascript to implement the desired functionality. My question is, ...