7
votes
9answers
395 views
Naming a dictionary structure that stores keys in a predictable order?
Note: Although my particular context is Objective-C, my question actually transcends programming language choice. Also, I tagged it as "subjective" since someone is bound to com …
2
votes
1answer
31 views
Generic methods for checking if a library/API is thread safe
I received a library from an external developer in form of a well defined API(in C++ and Java). What can be some tests to check if the library is thread-safe ?
3
votes
5answers
225 views
Why is the Java date API (java.util.Date, .Calendar) such a mess?
As most people are painfully aware of by now, the Java API for handling calendar dates (specifically the classes java.util.Date and java.util.Calendar) are a terrible mess.
Off th …
5
votes
4answers
705 views
When do I define objective-c methods?
I'm learning Objective-C, and have a C/C++ background.
In object-oriented C++, you always need to declare your method before you define (implement) it, even if it is declared i …
16
votes
6answers
702 views
Do fluent interfaces violate the Law of Demeter?
The wikipedia article about Law of Demeter says:
The law can be stated simply as "use only one dot".
However a simple example of a fluent interface may look like this:
stati …
2
votes
4answers
169 views
Static factory method gateway to internal factory - code smell?
Say I had a class that has a static factory method, like this:
public class Table
{
public static Table OpenTable(string path)
{
ITableFactory fac = IoC.Resolve& …
2
votes
3answers
87 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 …
9
votes
9answers
419 views
What’s missing in Cocoa?
If you could add anything to Cocoa, what would it be? Are there any features, major or minor, that you would say are missing in Cocoa. Perhaps there is a wheel you have had to inve …
0
votes
1answer
36 views
Asking for opinion for my MenuTree structure. Which is better, array or delimiter approach?
Which is the better API? I think the latter approach is better because strings are interned. But I'm pining for succintness. Which do you think is better?
[Task("Assortment", Au …
7
votes
5answers
475 views
Why is DialogResult a nullable bool in WPF?
Can anyone think of a good explanation for the fact that result of a dialog is a nullable bool in WPF? This has always baffled me. In WinForms it was an enum type and that made a l …
17
votes
14answers
1k views
How do you define a good or bad API?
Background:
I am taking a class at my university called "Software Constraints". In the first lectures we were learning how to build good APIs.
A good example we got of a really …
6
votes
12answers
452 views
When is an API overengineered?
I despise working with overengineered APIs that don't make simple things simple. Nonetheless, I'm working on designing an API for an open-source library and I'm starting to feel t …
1
vote
3answers
97 views
Can someone summarise visibility choices for Java interfaces?
I have two questions really:
1) When would you use a package-private interface?
2) Is there a way to have a public interface which is closed for implementation outside its packag …
8
votes
5answers
492 views
What’s the point of DSLs / fluent interfaces
I was recently watching a webcast about how to create a fluent DSL and I have to admit, I don't understand the reasons why one would use such an approach (at least for the given ex …
2
votes
5answers
238 views
Prohibit direct extension of Java class outside its package
I have a package with a
public abstract class Player { /*...*/ }
and these
public abstract class GamePlayer extends Player { /*...*/ }
public abstract class TournamentPlayer ex …
