Learning Java by creating a Tic-Tac-Toe game

Cole Crescas
3 min readDec 22, 2021

Starting out learning java can be a daunting task even if you have prior programming experience. Java is a fundamental language for Software Engineers and object oriented programming in general. This project will focus on a simple game of creating a GUI to display a Tic-Tac-Toe game built with a MVC architecture. Although I cannot share source code I will walk through the role of the model, view & controller and post an executable jar file.

The model is in charge of storing and manipulating the data. The model in this case would have two variables, an…

--

--