- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是第一次练习JAVA的学生。我们被要求创建一个简单的计算器。我所做的一切都没有任何错误。我唯一的问题是,当我执行 1.66 + 55 或什至 5 + 6 时,它会显示标题中的错误。这是代码
import java.awt.BorderLayout;
公共(public)类 Frame2 扩展了 JFrame {
private JPanel contentPane;
private JTextField tot;
public String operateur = "";
public String s;
public String Value = "";
public String Value2 = "";
public Double Total = 0.0;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Frame2 frame = new Frame2();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public Frame2() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 267, 360);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
tot = new JTextField();
tot.setFont(new Font("Tahoma", Font.PLAIN, 18));
tot.setEditable(false);
tot.setBounds(10, 11, 231, 45);
contentPane.add(tot);
tot.setColumns(10);
JButton t7 = new JButton("7");
t7.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 7;
} else {
Value2 = Value2.trim() + 7;
}
s = tot.getText();
tot.setText(s+"7");
}
});
t7.setBounds(10, 67, 49, 41);
contentPane.add(t7);
JButton t8 = new JButton("8");
t8.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 8;
} else {
Value2 = Value2.trim() + 8;
}
s = tot.getText();
tot.setText(s+"8");
}
});
t8.setBounds(69, 67, 50, 41);
contentPane.add(t8);
JButton t9 = new JButton("9");
t9.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 9;
} else {
Value2 = Value2.trim() + 9;
}
s = tot.getText();
tot.setText(s+"9");
}
});
t9.setBounds(129, 67, 50, 41);
contentPane.add(t9);
JButton t4 = new JButton("4");
t4.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 4;
} else {
Value2 = Value2.trim() + 4;
}
s = tot.getText();
tot.setText(s+"4");
}
});
t4.setBounds(10, 119, 50, 41);
contentPane.add(t4);
JButton t5 = new JButton("5");
t5.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 5;
} else {
Value2 = Value2.trim() + 5;
}
s = tot.getText();
tot.setText(s+"5");
}
});
t5.setBounds(69, 119, 50, 41);
contentPane.add(t5);
JButton t6 = new JButton("6");
t6.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 6.0;
} else {
Value2 = Value2.trim() + 6.0;
}
s = tot.getText();
tot.setText(s+"6");
}
});
t6.setBounds(129, 119, 50, 41);
contentPane.add(t6);
JButton t3 = new JButton("3");
t3.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 3.0;
} else {
Value2 = Value2.trim() + 3.0;
}
s = tot.getText();
tot.setText(s+"3");
}
});
t3.setBounds(10, 173, 49, 39);
contentPane.add(t3);
JButton t2 = new JButton("2");
t2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 2;
} else {
Value2 = Value2.trim() + 2;
}
s = tot.getText();
tot.setText(s+"2");
}
});
t2.setBounds(69, 171, 50, 41);
contentPane.add(t2);
JButton t1 = new JButton("1");
t1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value + 1;
} else if (operateur != null) {
Value2 = Value2.trim() + 1;
}
s = tot.getText();
tot.setText(s+"1");
}
});
t1.setBounds(129, 171, 49, 41);
contentPane.add(t1);
JButton t0 = new JButton("0");
t0.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 0;
} else {
Value2 = Value2.trim() + 0;
}
s = tot.getText();
tot.setText(s+"0");
}
});
t0.setBounds(129, 221, 50, 41);
contentPane.add(t0);
JButton virg = new JButton(",");
virg.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + ".";
} else {
Value2 = Value2.trim() + ".";
}
s = tot.getText();
tot.setText(s+".");
}
});
virg.setBounds(69, 223, 50, 39);
contentPane.add(virg);
JButton btnC = new JButton("C");
btnC.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
tot.setText("");
operateur = "";
Value = "";
Value2 = "";
Total = 0.0;
}
});
btnC.setForeground(Color.RED);
btnC.setBounds(10, 223, 49, 41);
contentPane.add(btnC);
JButton plus = new JButton("+");
plus.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
operateur ="+";
s = tot.getText();
tot.setText(s +"+");
}
});
plus.setBounds(188, 67, 53, 41);
contentPane.add(plus);
JButton calc = new JButton("CALCULER");
calc.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (operateur == "+") {
Total = Double.valueOf(Value) + Double.valueOf(Value2);
Total = Math.round( Total * 100.0 ) / 100.0;
tot.setText(String.valueOf(Total));
}
else if (operateur=="-") {
Total = Double.valueOf(Value) - Double.valueOf(Value2);
Total = Math.round( Total * 100.0 ) / 100.0;
tot.setText(String.valueOf(Total));
}
else if (operateur=="*") {
Total = Double.valueOf(Value) * Double.valueOf(Value2);
Total = Math.round( Total * 100.0 ) / 100.0;
tot.setText(String.valueOf(Total));
}
else if (operateur=="/") {
Total = Double.valueOf(Value) / Double.valueOf(Value2);
Total = Math.round( Total * 100.0 ) / 100.0;
tot.setText(String.valueOf(Total));
}
Value = String.valueOf(Total);
Value2 = "";
operateur = "";
Total = 0.0;
}
});
calc.setBounds(10, 273, 231, 38);
contentPane.add(calc);
JButton moins = new JButton("-");
moins.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
operateur ="-";
s = tot.getText();
tot.setText(s+"-");
}
});
moins.setBounds(189, 119, 52, 41);
contentPane.add(moins);
JButton fois = new JButton("*");
fois.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
operateur ="*";
s = tot.getText();
tot.setText(s+"*");
}
});
fois.setBounds(188, 173, 53, 39);
contentPane.add(fois);
JButton sur = new JButton("/");
sur.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
operateur ="/";
s = tot.getText();
tot.setText(s+"/");
}
});
sur.setBounds(189, 221, 52, 41);
contentPane.add(sur);
}
最佳答案
所以,你有很多问题可能会回来咬你,但让我们看看眼前的问题......
public void actionPerformed(ActionEvent e) {
if (operateur == "") {
Value = Value.trim() + 6.0;
} else {
Value2 = Value2.trim() + 6.0;
}
s = tot.getText();
tot.setText(s+"6");
}
每次您按下 6 时,它都会将 6.0
附加到 String
的末尾,因此当您键入 1.66
,您实际上得到的是 1.6.06.0
...这显然不是您想要的。
将 + 6.0
更改为 + 6
...并对 + 3.0
执行相同的操作...
另请查看 How do I compare strings in Java?和 Code Conventions for the Java TM Programming Language ,它会让人们更容易阅读你的代码,也让你更容易阅读别人的代码
关于java - 柴笔 JAVA "AWT-EventQueue-0"java.lang.NumberFormatException : multiple points,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26151811/
我正在尝试设计我的输入:文件。以下 SO 问题让我完成了 95% 的任务。区别在于我使用的是 HTML5 multiple=multiple 属性。 How to style "input file"
我一直在进行一项实验,其中多个调查参与者使用可穿戴技术聆听多首音乐来跟踪多条信息,两个例子是 BPM(心率)和 T(体温)。 目标是衡量每首音乐(以用户反馈为特征)对人类情感的影响。 目前,所有数据都
我使用 jquery 添加/删除输入 我使用append为日期/收入添加多个Tr 我还使用另一个附加来添加多个 td 以获取同一日期 Tr 中的收入 我添加多个日期输入,并在此表中添加多个收入输入 我
在 Android 中,有一种方法可以为项目中的所有模块生成签名的 APK。例如。我有以下项目 Project -- Library Module -- Module 1 -- Modul
我有一个用于网站展示的系统。 展览数据可能来自差异表中的多个数据。 喜欢这个设计: Table [ExhibitionType] used for differentiate category. Ta
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 8 年前。 Improve
我正在使用 UILocalnotification...收到通知时,当应用程序处于事件模式时我打开 viewcontroller...但是如果同时收到多个通知...我如何打开多个 viewcontro
我遇到的问题是一个策略浏览器游戏,它有 7 种类型的值。问题如下: 我在 $_POST 中获得了 7 个不同的值,包括从索引 unit_1 到索引 unit_7。这 7 个值是 0 到 20 之间的整
这个问题已经有答案了: Search Large Text File for Thousands of strings (3 个回答) 已关闭10 年前。 我想在多个文件上“grep”多个正则表达式。
我经常对如何在我的应用程序中解决这个问题感到矛盾。我使用了很多选项,包括: 一个通用的多选 - 这是我最不喜欢和最很少使用的选项。我发现可用性非常糟糕,一个简单的误点击就会毁了你所有的辛勤工作。 “自
以下是 couchbase 中的示例文档之一。 { "name":"abc", "friends":["a","b","c"], "bestfriends":["x","y","z"] }
我有 4 张 table 。 表组 | ID | NAME | 1 Premium 2 Silver 表用户 | ID | group_id | NAME | 1
我正在开发一个使用第三方服务(Facebook、Google 等)对用户进行身份验证的应用程序。我为每个用户提供一个内部 ID(uuid v4),该 ID 与他们的第 3 方 ID 相关联。现在,我的
我是 bicep 新手,一直在努力实现 Bicep 脚本来部署具有许多主题和订阅的 Azure 服务总线。 我添加的每个主题都有可变数量的订阅(例如,通知主题可能有 3 个订阅,但分析主题可能有 2
我是 bicep 新手,一直在努力实现 Bicep 脚本来部署具有许多主题和订阅的 Azure 服务总线。 我添加的每个主题都有可变数量的订阅(例如,通知主题可能有 3 个订阅,但分析主题可能有 2
我必须创建一个大型数据库。它将保存来自 100 多个设备的数据,并不断更新数据库。每 10 秒,每个设备都会更新数据库中的一行。是为每个设备数据建立一个单独的表还是将数据与设备 ID 放在同一个表中更
我需要在 Activity 开始时显示“正在加载”进度对话框,然后在加载完成后显示一些内容。在我的 onresume 中,我有类似这样的代码: loadThread = true; Thread sh
我有一个 html 表单 当我提交表单时,假设对于 id = 1,数量为 5 或 对于 id = 3,数量为 8。如何在java脚本或jquery中获取这些值并将这些信息提交到服务器?我
我正在创建一个 Mozilla 扩展程序,通过单击“转换按钮”(标签:转换)将网页内容转换为其他语言它的标签被转换为英文,以便单击该按钮(标签:英文)内容被转换为原始形式 我尝试为每个选项卡设置属性“
我正在尝试根据 进行搜索 我通过运行代码从 select 中获取值: for($i=0;$i= '$age_from' AND users.user_age = '$age_from' AND u
我是一名优秀的程序员,十分优秀!