我的Javacalculator有问题。它有时会给我带来奇怪的结果,例如 357856 * 42342 = -2027530432
有人可以试着向我解释为什么会这样吗? 当我使用太大的数字时它也会崩溃,但我认为这是正常的。
这是我的activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:background="#ABE033" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="@string/Zahl1"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/zahl1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:ems="10"
android:inputType="numberDecimal" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/zahl1"
android:layout_below="@+id/zahl1"
android:text="@string/Zahl2"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/zahl2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView2"
android:layout_below="@+id/textView2"
android:layout_marginTop="11dp"
android:ems="10"
android:inputType="numberDecimal" />
<EditText
android:id="@+id/Ergebnis"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/zahl2"
android:layout_below="@+id/zahl2"
android:inputType="numberDecimal"
android:ems="10" />
<Button
android:id="@+id/button1"
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:onClick="ButtonKlick"
android:text="@string/Rechnen" />
这是我的MainActivity.java
package com.example.rechner;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
public void ButtonKlick (View view) {
int zahl1;
int zahl2;
int Ergebnis;
EditText Feld1 = (EditText)findViewById(R.id.zahl1);
EditText Feld2 = (EditText)findViewById(R.id.zahl2);
EditText FeldErgebnis = (EditText)findViewById(R.id.Ergebnis);
if (Feld1.getText().toString().length() == 0) {
return;
}
if (Feld2.getText().toString().length() == 0) {
return;
}
zahl1 = Integer.parseInt(Feld1.getText().toString());
zahl2 = Integer.parseInt(Feld2.getText().toString());
Ergebnis = zahl1 * zahl2;
FeldErgebnis.setText(String.valueOf(Ergebnis));
}
}
如果你需要,这是我的strings.xml。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Rechner</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<string name="Zahl1">Zahl 1:</string>
<string name="Zahl2">Zahl 2:</string>
<string name="Plus">:</string>
</resources>
答案 0 :(得分:4)
检查int的最大大小,我很确定你通过了它。
int Range : minimum value of -2^31 and a maximum value of (2^31)-1
long Range : minimum value of -2^63 and a maximum value of (2^63)-1
http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html
尝试使用长数据或其他数据类型。
答案 1 :(得分:2)
int
基元类型的最大限制是 2,147,483,647 ,lesser
比(357856 * 42342) = 15152338752.
因此会引导您进入这个奇怪的答案。使用long
代替int
。
答案 2 :(得分:1)
刚溢出
groovy:000> 357856 * 42342
===> -2027530432
groovy:000> 357856 * 42342L
===> 15152338752
答案 3 :(得分:1)
“int”数据类型有32位,允许最大值为2 ^ 31 - 1 =约20亿。 你的计算导致大约150亿的结果。 32位int将溢出,从20亿传递到-2亿,因此你的结果很奇怪。
对于如此大的数字,使用64位数据类型,如“long”。
答案 4 :(得分:0)
这是因为溢出而发生的。您超出了数据类型int的范围。
int Range : minimum value of -2^31 and a maximum value of (2^31)-1
Long Range : minimum value of -2^63 and a maximum value of (2^63)-1
尝试切换到Long。进一步阅读this