Does having an absolutely Object Oriented Approach, to solve problems
affect run-time & performance ?
I mean, since OOP has it's overheads, does this translate into poorly
performing code ?
something like...
MyAlgorithm m = new MyAlgorithm();
File input = new file();
File output = new File();
while ( more_test_cases ) {
TestCase tc = new TestCase();
tc.readValuesFromFile(File f);
m.runOn(tc);
tc.writeAnswerToFile(output);
}
What is your opinion ?
--
You received this message because you are subscribed to the Google Groups
"google-codejam" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-code?hl=en.