1

引数を持つプライベート メソッドを toString メソッドで使用できるようにするのに非常に苦労していますが、2 つのメソッドを連携させる方法がわかりません。

メインクラス:

import static java.lang.System.*;

public class Triples
{
 private int number;

public Triples()
{
    //this(0);
}

public Triples(int num)
{
    number = num;
}

public void setNum(int num)
{
    number = num;
}

private int greatestCommonFactor(int a, int b, int c)
{
    int max = number;

    for(int n = 1; n <= max; n++)
    {

    for(a = n; a <= max; a++)
    {
        a = n;
        for(b = a +1; b <= max; b++)
        {
            b =n;
            for(c = b + 1; c <= max; c++)
            {
                c = n;
                if(Math.pow(a, 2)+ Math.pow(b, 2)== Math.pow(c, 2))
                {
                    if((a%2==1 && b%2==0)|| (a%2==0 && b%2==1))
                    {
                        if(a%2<=1 && b%2<=1 && c%2<=1)
                        {

                            String last = a + "" + b + c;
                        }
                    }
                }

            }

        }

    }
    }

    return 1;
}

public String toString()
{
    String output="";
    output = output + this.greatestCommonFactor( ) + " \n";


    return output;
}
}

そして私のランナークラスを相互参照するために:

import static java.lang.System.*;

import java.util.Scanner;

public class Lab11j
{
 public static void main(String args[])
  {
       Scanner keyboard = new Scanner(System.in);
        String choice="";
            do{
                out.print("Enter the max number to use : ");
                int big = keyboard.nextInt();


                    //instantiate a TriangleThree object
             Triples triple = new Triples(big);
                //call the toString method to print the triangle
                out.println( triple );

                System.out.print("Do you want to enter more data? ");
                choice=keyboard.next();
            }while(choice.equals("Y")||choice.equals("y"));
    }
}

このラボの説明が必要な場合は、ラボシートの Google ドキュメントをご覧ください: https://docs.google.com/open?id=0B_ifaCiEZgtcX08tbW1jNThZZmM

4

3 に答える 3

3

ここでは、変数ab&cをローカル変数として使用できます。これにより、次の引数リストからそれらを削除できますgreatestCommonFactor

private int greatestCommonFactor() {

   int a = 0;
   int b = 0;
   int c = 0; 
   ...

メソッドの範囲内でのみ必要とされるためです。

于 2012-11-27T01:00:03.420 に答える
1

まあ、そうだろう。に何も渡していませんgreatestCommonFactortoString()メソッドに十分な引数を渡さなかったときに、メソッドで何が起こると予想していたのかわかりません。

于 2012-11-27T00:53:53.413 に答える
0

あなたはそれらを次のように渡す必要があります

output = output + this.greatestCommonFactor(1,2,3) + " \n";

問題は、パラメーターを toString に渡さない限り、これがないと、このコードは非常に制限されているように見えます。または、関数に渡されるものを使用して、クラスにいくつかのフィールドを設定する必要があります。

于 2012-11-27T00:57:41.870 に答える