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 に答える
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 に答える