/JavaFX_Calculator

Primary LanguageJavaMIT LicenseMIT

JavaFX_Calculator

A standared calculator I created from scratch (GUI was created solely with JavaFX). All the basic functionalities and operations are working properly.

Work in progress.

Images

  1. Addition and Subtraction

5 + 3 - (-6) = 14

  1. Multiplication

22 * 0.05 = 1.1

  1. Division

5 / -8 = -0.625

  1. Deletion

Remarks

This is a personal project that was intended for familiarizing myself with JavaFX and event handling. Through this project, I gained insight into how complicated the logic behind a simple calculator application can be. One interesting case was my implementation for the backspace button. Originally, pressing the backspace button just deleted the last character of the output text box. But this clearly did not work for negative integers since pressing backspace for "-5" led to "-" ... so I added a check for negative integers. I also spent quite a bit of time thinking of an implementation for storing the inputs. Currently, the inputs are stored in a list but I believe this is not the most optimal way. Another case to consider was for displaying integers without trailing zeros (e.g. "12" instead of "12.0) - but that was simple to fix with a simple check.

Planned Updates

  • better error handling for cases such as division by zero or large numbers
  • update GUI
  • refactoring redundant code by using interfaces/abstract classes