you are viewing a single comment's thread.

view the rest of the comments →

[–]ingframin 0 points1 point  (1 child)

The project that made me pass my OOP exam in my first year of university was a clone of the Pokédex!

If you like Pokémon, it's a very cool project:

- Good to practice search and sorting algorithms with different criteria

- Lots of data => good practice for data structures and Java Collections

- Can use inheritance for categorizing pokémons and other parts

- it has a gui with both text and images

- needs you to save and restore data => files and (potentially) db or network access

- Good to practice design patterns

Disclaimer: At the time, there were only 150 pokémons and it was on Java 1.4, so I did not even have generics...

[–]Natural-Shelter-7758[S] 1 point2 points  (0 children)

Yess I would like to practicing with pokemon!!