0

我的 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>
4

5 回答 5

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

尝试使用 long 或其他数据类型。

于 2013-11-06T11:48:16.170 回答
2

int原始类型的最大限制是2,147,483,647,这lesser(357856 * 42342) = 15152338752.因此它导致你得到那个奇怪的答案。使用long而不是int.

于 2013-11-06T11:50:52.087 回答
1

“int”数据类型有 32 位,允许最大值为 2^31 - 1 = 大约 20 亿。你的计算导致了大约 150 亿的结果。32 位 int 会溢出,从 20 亿传递到 -20 亿,因此会产生奇怪的结果。

对于如此大的数字,请使用 64 位数据类型,例如“long”。

于 2013-11-06T11:53:15.077 回答
1

只是溢出

groovy:000> 357856 * 42342
===> -2027530432
groovy:000> 357856 * 42342L
===> 15152338752
于 2013-11-06T11:48:08.290 回答
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

尝试切换到长。进一步阅读

于 2013-11-06T11:49:40.297 回答