


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Information about the cmsc433 course offered in spring 2004 at the university of maryland, college park. The course focuses on making students better programmers through object-oriented programming using java, with an emphasis on reusability, maintainability, and design. Topics include java review, programming techniques and tools, design patterns, refactoring, concurrency, and distributed programming.
Typology: Study notes
1 / 4
This page cannot be seen from the preview
Don't miss anything!



2
3
found = false; for (int i = 0; i < a.length; i++) if (a[i] == e) { z = i; found = true; } found = false; for (int i = a.length-1; i >= 0; i--) if (a[i] == e) { z = i; found = true; }
found = a.isIn(e); if (found) z = a.indexOf(e);
7
8
9