Search Results

1
vote

Java Developer meets ObjectiveC on Mac OS

Get Cocoa Programming for Mac OS X. Most of your questions will be answered by that book. You can also start reading …
2
votes

Too many “pattern suffixes” - design smell?

I see it as a design smell - it will make me think if all those levels of abstraction are pulling enough weight. I can't see why you wanted to name a class 'InstructionBuilderFactoryMapFact …
0
votes

Can you use Java libraries in a VB.net program?

Nothing out of the box. Most java/.net interop that I know uses web services. …
2
votes

How do you force constructor signatures and static methods?

Force Constructors You can't. The closest that you can come is make the default constructor private and then provide a constructor that has parameters. But it still has loopholes. …
1
vote

Ruby and duck typing: design by contract impossible?

Short answer: Automated unit tests and good naming practices. The proper naming of methods is essential. By giving the name get_files_in(directory) to a method …
1
vote

String Operations in Java

string.format …