/WebCalculatorDemo

This is my first JS project, is a simple calculator, the latter will be a variety of improvements, such as beautify the appearance, increase the function, etc.

Primary LanguageJavaScript

WebCalculatorDemo

This is my first JS project, is a simple calculator, the latter will be a variety of improvements, such as beautify the appearance, increase the function, etc.

项目特点

  • 使用的是原生 JavaScript 、 CSS 、 HTML 语言,并没有使用任何框架
  • 使用了工厂模式的设计模式
  • xxx-abandon.js是最早的计算器业务逻辑代码,因扩展性、复用性、可维护性较低,后重构代码写了OperationTypeFactory.jsSimpleCalculatorIndex.js这份新的业务代码,改善了扩展性,复用性和可维护性。其中OperationTypeFactory.js是运算类型对象代码,以后如果想增加运算类型,可在此增加对应运算类型对象。SimpleCalculatorIndex.js主要有一个Main类对象,其提供了与界面交互的业务代码。
  • 后期会不定期逐步增加功能或美化外观

版本更新

version 1.0

1.0版本效果

  1. 提供了开方、三角函数、乘除加减运算、求幂运算
  2. 只能进行正整数的运算

version 2.0

乘法运算

支持小数点和负数运算

  1. 支持小数点、负数运算
  2. 提供圆周率数值
  3. 提供一键清除运算过程和退位
  4. 支持显示运算表达式

TO-DO

  • 增加科学计算界面
  • 增加多表达式计算
  • 解决浮点数不精确的问题
  • 运算结果最多显示10位有效数学
  • 运算符号显示修正

在线预览

WebCalculatorDemo

我的个人博客

刘志宇的新天地