Rendering:
Code:
package gui; /** * 导入所需要的包 **/ import java.awt.*; // 这个是java的gui编程里面一个很重要的包 import java.awt.event.*; // 用来处理事件所需要 import java.util.Stack; // 栈 , 我用来处理运算的 public class Calculator extends Frame implements ActionListener{ /** * 先声明一个公共类叫Calculator , 继承自Frame类 , 实现ActionListener接口功能 **/ private static final long serialVersionUID = 1L; // 这个是用来控制版本的序列化 int frame_width = 1000,frame_height = 400; //设置整个框架的长宽 Panel panel_textfield,panel_number,panel_op,panel_other; // 整个计算器布局我把它分成两个面板 , 一个是上面的输入框区 , 一个是下面的按钮区 , 然后按钮区又分成了左边和右边两个区 , 所以有三个panel Button [] number_buttons; // 声明数字按钮(也就是上面说的左边区) Button [] op_buttons; // 声明操作符按钮(也就是上面说的右边区) TextField textfield; // 输入框 public Calculator() { super("计算器"); // 完成实例域参数的初始化,调用构造器的语句只能作为另一个构造器(通常指的是子类构造器)的第一条语句出现 init(); // 自己写的初始化方法 setLayout(); // 设置布局管理方式 setBackground(); // 设置背景 setBounds(); // 设置位置 setFonts(); // 设置字体 addButtons(); // 添加按钮 textfield.setEditable(false); // 设置输入框为不可手动编辑 , 只能通过按钮输入 */ addWindowListener // 添加一个窗口监听器,便于按下关闭按钮时能关闭窗口 , 否则只能在ide里面停止调试来关闭程序 ( new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } } ); setVisible(true); // 设置框架为可见,不然画了框你也看不见...一定要放在最后面,放在前面的话, 后面对窗体有改动得缩放拉伸一下窗体进行窗体重绘才能出现效果 , 我在这里卡了很久.... } public void init() { panel_textfield = new Panel(); // 实例化一个panel panel_number = new Panel(); // 实例化一个panel panel_op = new Panel(); // 实例化一个panel panel_other = new Panel(); // 实例化一个panel textfield = new TextField(frame_width);// 实例化一个文本输入框 setResizable(false); // 设置整个窗体为不可缩放拉伸 add(panel_textfield); // 往窗体中添加输入框面板 add(panel_other); // 往窗体中添加按钮面板 panel_textfield.add(textfield); // 在输入框面板中添加输入框 panel_other.add(panel_number); // 在下面面板中添加数字按钮面板 panel_other.add(panel_op); // 在下面面板中添加操作符按钮面板 } public void setLayout() { setLayout(new GridLayout(2,1,4,4)); // 设置窗体布局方式为网格布局,2*1的网格,网格之间间距为4个像素 panel_textfield.setLayout(null); // 输入框面板就一个组件,所以设置null panel_other.setLayout(new GridLayout(1,2,4,4)); // 下面面板因为分成左边的数字区和右边的操作符区,所以设置1*2的网格布局方式,间距4个像素 panel_number.setLayout(new GridLayout(5,3,4,4)); // 数字区布局设置为5*3的网格布局 panel_op.setLayout(new GridLayout(3,1,4,4)); // 操作符区设置为3*1的网格布局方式 } public void setBackground() { // 设置背景,没什么好说的.... panel_textfield.setBackground(Color.red); panel_number.setBackground(Color.green); panel_op.setBackground(Color.blue); } public void setBounds() { // 设置组件位置,没什么好说的.... setBounds(0, 0, frame_width, frame_height); textfield.setBounds(0, 0, frame_width, frame_height / 2); } public void addButtons() { String [] titles1 = {"/", "*", "-", // 数字区按钮的label值 "7", "8", "9", "4", "5", "6", "1", "2", "3", "0", ".", "c"}; String [] titles2 = {"x", "+", "="}; // 操作符区按钮的label值 number_buttons = new Button[15]; // 申请15个按钮对象 op_buttons = new Button[3]; // 申请3个按钮对象 for(int i = 0; i < this.number_buttons.length; i++) { number_buttons[i] = new Button(titles1[i]); panel_number.add(number_buttons[i]); // 往数字区中添加按钮 number_buttons[i].addActionListener(this); // 按钮的事件监听器,处理方法为this,也就是下面重载的actionPerformed()方法,这个方法必须被重载 } for(int i = 0; i < this.op_buttons.length; i++) { op_buttons[i] = new Button(titles2[i]); // 往操作符区中添加按钮 panel_op.add(this.op_buttons[i]); op_buttons[i].addActionListener(this); // 按钮的事件监听器,处理方法为this,也就是下面重载的actionPerformed()方法,这个方法必须被重载 } } @Override // 对ActionListener接口的此方法进行重载 public void actionPerformed(ActionEvent e) { Button button = (Button) e.getSource(); // 获得按钮来源 /** * 如果是数字键和操作符 , 则直接显示 **/ for(int i = 0; i < 14; i++) { if(button == number_buttons[i] || button == op_buttons[1]) { textfield.setText(textfield.getText() + button.getLabel()); return; } } /** * 如果是c,则清空 **/ if(button == number_buttons[14]) { textfield.setText(""); return; } /** * 如果是回退按钮 , 则清除最近的一个字符 **/ if(button == op_buttons[0]) { String s = textfield.getText(); if(s.length() > 0) textfield.setText(s.substring(0, s.length() - 1)); return; } /** * 如果是=,则计算结果 **/ if(button == op_buttons[2]) { textfield.setText(getResult()); return; } } public String getResult() { /** * 计算结果 **/ String s = textfield.getText(); // 先获得输入的字符串 String num = ""; Stack<Double> nums = new Stack<Double>(); Stack<String> ops = new Stack<String>(); /** * 利用regex分离操作数和操作符,然后用栈进行结果的计算 **/ for(int i = 0; i < s.length(); i++) { String temp = s.charAt(i) + ""; if(temp.matches("[0-9]") || temp.matches("[.]")) { num += temp; } else if(temp.matches("[*+]") || temp.matches("[-]") | temp.matches("[/]")) { if(!num.equals("")) nums.push(Double.parseDouble(num)); if(ops.isEmpty() || cmpLevel(temp,ops.peek())) { ops.push(temp); } else { Double num1 = nums.pop(); Double num2 = nums.pop(); String op2 = ops.pop(); nums.push(compute(num2,num1,op2)); i--; } num = ""; } } while(!ops.isEmpty()) { if(!num.equals("")) { nums.push(compute(nums.pop(),Double.parseDouble(num),ops.pop())); num = ""; } else { Double num1 = nums.pop(); Double num2 = nums.pop(); nums.push(compute(num2,num1,ops.pop())); } } return nums.pop().toString(); } /** * 将两个操作数根据操作符进行运算 , 返回结果 ** / public Double compute(double num1,double num2,String op) { if(op.equals("+")) { return num1 + num2; } else if(op.equals("-")) { return num1 - num2; } else if(op.equals("*")) { return num1 * num2; } else return num1 / num2; } /** * 比较两个操作符的优先级 **/ public boolean cmpLevel(String s1,String s2) { if(s1.equals("+") || s1.equals("-")) { return false; } else { if(s2.equals("+") || s2.equals("-")) return true; return false; } } /** * 设置每个组件的字体 **/ public void setFonts() { panel_number.setFont(new Font("微软雅黑",Font.PLAIN,24)); panel_op.setFont(new Font("微软雅黑",Font.PLAIN,24)); panel_other.setFont(new Font("微软雅黑",Font.PLAIN,24)); textfield.setFont(new Font("微软雅黑",Font.PLAIN,48)); } /** * main方法 **/ public static void main(String [] args) { new Calculator(); } }
The above is the detailed content of How to implement calculator applet in java gui. For more information, please follow other related articles on the PHP Chinese website!

随着移动互联网技术和智能手机的普及,微信成为了人们生活中不可或缺的一个应用。而微信小程序则让人们可以在不需要下载安装应用的情况下,直接使用小程序来解决一些简单的需求。本文将介绍如何使用Python来开发微信小程序。一、准备工作在使用Python开发微信小程序之前,需要安装相关的Python库。这里推荐使用wxpy和itchat这两个库。wxpy是一个微信机器

小程序能用react,其使用方法:1、基于“react-reconciler”实现一个渲染器,生成一个DSL;2、创建一个小程序组件,去解析和渲染DSL;3、安装npm,并执行开发者工具中的构建npm;4、在自己的页面中引入包,再利用api即可完成开发。

实现思路x01服务端的建立首先,在服务端,使用socket进行消息的接受,每接受一个socket的请求,就开启一个新的线程来管理消息的分发与接受,同时,又存在一个handler来管理所有的线程,从而实现对聊天室的各种功能的处理x02客户端的建立客户端的建立就要比服务端简单多了,客户端的作用只是对消息的发送以及接受,以及按照特定的规则去输入特定的字符从而实现不同的功能的使用,因此,在客户端这里,只需要去使用两个线程,一个是专门用于接受消息,一个是专门用于发送消息的至于为什么不用一个呢,那是因为,只

微信小程序是一种轻量级的应用程序,可以在微信平台上运行,不需要下载安装,方便快捷。Java语言作为一种广泛应用于企业级应用开发的语言,也可以用于微信小程序的开发。在Java语言中,可以使用SpringBoot框架和第三方工具包来开发微信小程序。下面是一个简单的微信小程序开发过程。创建微信小程序首先,需要在微信公众平台上注册一个小程序。注册成功后,可以获取到

本篇文章给大家带来了关于微信小程序的相关问题,其中主要介绍了如何在小程序中用公众号模板消息,下面一起来看一下,希望对大家有帮助。

PHP与小程序的地理位置定位与地图显示地理位置定位与地图显示在现代科技中已经成为了必备的功能之一。随着移动设备的普及,人们对于定位和地图显示的需求也越来越高。在开发过程中,PHP和小程序是常见的两种技术选择。本文将为大家介绍PHP与小程序中的地理位置定位与地图显示的实现方法,并附上相应的代码示例。一、PHP中的地理位置定位在PHP中,我们可以使用第三方地理位

随着小程序的广泛应用,越来越多的开发者需要将其与后台服务器进行数据交互,其中最常见的业务场景之一就是上传文件。本文将介绍在小程序中实现文件上传的PHP后台实现方法。一、小程序中的文件上传在小程序中实现文件上传,主要依赖于小程序APIwx.uploadFile()。该API接受一个options对象作为参数,其中包含了要上传的文件路径、需要传递的其他数据以及

PHP与小程序的第三方登录与绑定功能实现随着互联网的发展和智能手机的普及,小程序成为了移动应用程序开发的热门选择。小程序不仅提供了优秀的用户体验,还具备各种强大的功能。其中,第三方登录与绑定是小程序中常见的功能之一。本文将介绍如何使用PHP与小程序实现第三方登录与绑定的功能,并为读者提供代码示例。第三方登录是指用户可以使用其他平台的账号信息登录到目标平台,而


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
