代码如下

import java.awt.Color;
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener; import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField; class myWindows extends JFrame implements ActionListener
{
private static final long serialVersionUID = 1L;
boolean tag=true;
boolean signal=true;
JTextField text1;
public myWindows(int w,int h)
{
setTitle("计算器程序");
this.setBounds(100,100,350,300);
Container con = getContentPane();
con.setLayout(new GridLayout(3,1));
JPanel p1 = new JPanel();
p1.setLayout(new GridLayout(2,1));
text1 = new JTextField(150);
text1.setHorizontalAlignment(text1.RIGHT);
text1.setText("0.");
JPanel p1_1 = new JPanel();
p1_1.setLayout(new GridLayout(1,4));
JButton btn_BackSpace = new JButton("BackSpace");
btn_BackSpace.setForeground(Color.red);
btn_BackSpace.addActionListener(this);
JButton btn_CE = new JButton("CE");
btn_CE.setForeground(Color.red);
JButton btn_C = new JButton("C");
btn_C.setForeground(Color.red);
btn_C.addActionListener(this);
p1.add(text1);
p1_1.add(new JLabel());
p1_1.add(btn_BackSpace);
p1_1.add(btn_CE);
p1_1.add(btn_C);
p1.add(p1_1); JPanel p2 = new JPanel();
p2.setLayout(new GridLayout(2,1));
JPanel p2_1 = new JPanel();
p2_1.setLayout(new GridLayout(1,6));
JButton btn_MC = new JButton("MC");
btn_MC.setForeground(Color.red);
JButton btn_7 = new JButton("7");
btn_7.setForeground(Color.BLUE);
btn_7.addActionListener(this);
JButton btn_8 = new JButton("8");
btn_8.setForeground(Color.BLUE);
btn_8.addActionListener(this);
JButton btn_9 = new JButton("9");
btn_9.setForeground(Color.BLUE);
btn_9.addActionListener(this);
JButton btn_wind= new JButton("/");
btn_wind.setForeground(Color.red);
JButton btn_sqrt = new JButton("sqrt");
btn_sqrt.setForeground(Color.BLUE);
p2_1.add(btn_MC); p2_1.add(btn_7);
p2_1.add(btn_8); p2_1.add(btn_9);
p2_1.add(btn_wind);p2_1.add(btn_sqrt);
JPanel p2_2 = new JPanel();
p2_2.setLayout(new GridLayout(1,6));
JButton btn_MR = new JButton("MR");
btn_MR.setForeground(Color.red);
JButton btn_4 = new JButton("4");
btn_4.setForeground(Color.BLUE);
btn_4.addActionListener(this);
JButton btn_5 = new JButton("5");
btn_5.setForeground(Color.BLUE);
btn_5.addActionListener(this);
JButton btn_6 = new JButton("6");
btn_6.setForeground(Color.BLUE);
btn_6.addActionListener(this);
JButton btn_star= new JButton("*");
btn_star.setForeground(Color.red);
JButton btn_mod = new JButton("%");
btn_mod.setForeground(Color.BLUE);
p2_2.add(btn_MR);
p2_2.add(btn_4); p2_2.add(btn_5);
p2_2.add(btn_6);
p2_2.add(btn_star);p2_2.add(btn_mod);
p2.add(p2_1);p2.add(p2_2); JPanel p3 = new JPanel();
p3.setLayout(new GridLayout(2,1));
JPanel p3_1 = new JPanel();
p3_1.setLayout(new GridLayout(1,6));
JButton btn_MS = new JButton("MS");
btn_MS.setForeground(Color.red);
JButton btn_1 = new JButton("1");
btn_1.setForeground(Color.BLUE);
btn_1.addActionListener(this);
JButton btn_2 = new JButton("2");
btn_2.setForeground(Color.BLUE);
btn_2.addActionListener(this);
JButton btn_3 = new JButton("3");
btn_3.setForeground(Color.BLUE);
btn_3.addActionListener(this);
JButton btn_sub= new JButton("-");
btn_sub.setForeground(Color.red);
JButton btn_reverse = new JButton("1/x");
btn_reverse.setForeground(Color.BLUE);
p3_1.add(btn_MS); p3_1.add(btn_1);
p3_1.add(btn_2); p3_1.add(btn_3);
p3_1.add(btn_sub);p3_1.add(btn_reverse);
JPanel p3_2 = new JPanel();
p3_2.setLayout(new GridLayout(1,6));
JButton btn_Madd = new JButton("M+");
btn_Madd.setForeground(Color.red);
JButton btn_0= new JButton("0");
btn_0.setForeground(Color.BLUE);
btn_0.addActionListener(this);
JButton btn_singal = new JButton("+/-");
btn_singal.setForeground(Color.BLUE);
btn_singal.addActionListener(this);
JButton btn_dot = new JButton(".");
btn_dot.addActionListener(this);
JButton btn_add= new JButton("+");
btn_add.setForeground(Color.red);
JButton btn_equal = new JButton("=");
btn_equal.setForeground(Color.red);
p3_2.add(btn_Madd);
p3_2.add(btn_0); p3_2.add(btn_singal);
p3_2.add(btn_dot);
p3_2.add(btn_add);p3_2.add(btn_equal);
p3.add(p3_1);p3.add(p3_2);
con.add(p1);con.add(p2);con.add(p3);
setVisible(true);
}
public void press_dot()
{
tag=false;
}

  运行结果
<ignore_js_op>

详细说明:http://java.662p.com/thread-2140-1-2.html

Windows计算机功能Java源码的更多相关文章

  1. 解密随机数生成器(二)——从java源码看线性同余算法

    Random Java中的Random类生成的是伪随机数,使用的是48-bit的种子,然后调用一个linear congruential formula线性同余方程(Donald Knuth的编程艺术 ...

  2. 基于JSP+Servlet开发在线租车系统 java 源码

    运行环境: 最好是java jdk 1.8,我们在这个平台上运行的.其他版本理论上也可以.IDE环境: Eclipse,Myeclipse,IDEA都可以tomcat环境: Tomcat 7.x,8. ...

  3. 如何阅读Java源码 阅读java的真实体会

    刚才在论坛不经意间,看到有关源码阅读的帖子.回想自己前几年,阅读源码那种兴奋和成就感(1),不禁又有一种激动. 源码阅读,我觉得最核心有三点:技术基础+强烈的求知欲+耐心.   说到技术基础,我打个比 ...

  4. 如何阅读Java源码

    刚才在论坛不经意间,看到有关源码阅读的帖子.回想自己前几年,阅读源码那种兴奋和成就感(1),不禁又有一种激动.源码阅读,我觉得最核心有三点:技术基础+强烈的求知欲+耐心. 说到技术基础,我打个比方吧, ...

  5. Java 源码学习线路————_先JDK工具包集合_再core包,也就是String、StringBuffer等_Java IO类库

    http://www.iteye.com/topic/1113732 原则网址 Java源码初接触 如果你进行过一年左右的开发,喜欢用eclipse的debug功能.好了,你现在就有阅读源码的技术基础 ...

  6. Java源码学习 -- java.lang.StringBuilder,java.lang.StringBuffer,java.lang.AbstractStringBuilder

    一直以来,都是看到网上说“ StringBuilder是线程不安全的,但运行效率高:StringBuffer 是线程安全的,但运行效率低”,然后默默记住:一个是线程安全.一个线程不安全,但对内在原因并 ...

  7. [收藏] Java源码阅读的真实体会

    收藏自http://www.iteye.com/topic/1113732 刚才在论坛不经意间,看到有关源码阅读的帖子.回想自己前几年,阅读源码那种兴奋和成就感(1),不禁又有一种激动. 源码阅读,我 ...

  8. 2018-09-15 Java源码英翻中库以及服务原型

    服务很简单, 只为演示这个库, 源码在: program-in-chinese/code_translator_service. 在Postman测试效果: 演示服务地址: 74.91.17.250: ...

  9. 如何阅读Java源码?

    阅读本文大概需要 3.6 分钟. 阅读Java源码的前提条件: 1.技术基础 在阅读源码之前,我们要有一定程度的技术基础的支持. 假如你从来都没有学过Java,也没有其它编程语言的基础,上来就啃< ...

随机推荐

  1. gerrit 配置 apache2 反向代理(转载)

    Apache 2 Configuration To run Gerrit behind an Apache server using mod_proxy, enable the necessary A ...

  2. Python补充03 Python内置函数清单

    作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明. Python内置(built-in)函数随着python解释器的运行而创建.在Pytho ...

  3. 那些不能错过的Xcode插件

      来源:http://www.cocoachina.com/applenews/devnews/2013/0918/7022.html 古人云“工欲善其事必先利其器”,打造一个强大的开发环境,是立即 ...

  4. web性能测试的新利器 - Gatling 介绍

    转载:http://www.51testing.com/html/10/26810-852956.html 最近发现了一个新的性能测试工具Gatling,貌似比Jmeter还好玩.这几天就先简单介绍一 ...

  5. SQL Server 2005中的分区表(六):将已分区表转换成普通表(转)

    我的俄罗斯名叫作“不折腾不舒服斯基”,所以,不将分区表好好折腾一下,我就是不舒服. 在前面,我们介绍过怎么样直接创建一个分区表,也介绍过怎么将一个普通表转换成一个分区表.那么,这两种方式创建的表有什么 ...

  6. [ActionScript 3.0] AS3 用于拖动对象时跟随鼠标的缓动效果

    package com.fylibs.components.effects { import flash.display.DisplayObject; import flash.events.Even ...

  7. hcatalog配置

     https://cwiki.apache.org/confluence/display/Hive/HCatalog+CLI hive的配置中添加: export PATH=$PATH:$HIVE ...

  8. POJ1002_487-3279_C++

    题目:http://poj.org/problem?id=1002 我知道你们最需要的是这个 [ 手动滑稽 ] STD 给出的方法是丢进一个数组,然后排序,相邻的是重复的 这个方法,时间复杂度很不错, ...

  9. MATLAB 实用函数

    MATLAB个人工具箱(MATLAB) mymail.m 可以利用MATLAB发送邮件(支持附件和群发),非常实用的函数,适用于:耗时很长的脚本完成后通知作者:外加定时器后用于信息推送:家庭监视器紧急 ...

  10. Android开发-API指南-<grant-uri-permission>

    <grant-uri-permission> 英文原文:http://developer.android.com/guide/topics/manifest/grant-uri-permi ...