|
|
Welcome to the Java Forums.
You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:
- have access to post topics
- communicate privately with other members (PM)
- not see advertisements between posts
- have the possibility to earn one of our surprises if you are an active member
- access many other special features that will be introduced later.
Registration is fast, simple and absolutely free so please, join our community today!
If you have any problems with the registration process or your account login, please contact us.
|
|

01-30-2008, 06:33 AM
|
|
Member
|
|
Join Date: Dec 2007
Posts: 26
|
|
|
toString method
I'm completely confused on how to make a working toString method. Here's what I have. This program inputs 4 variables which make fractions and add, subtract, multiply, and divide them. It's a pretty simple thing but, making the toString method and showing it is confusing me. Here it is.
/**
* @(#)prog53.java
*
*
* @author
* @version 1.00 2008/1/29
*/
import java.util.*;
import static java.lang.System.*;
public class prog53 {
public static void main(String args[])
{
Fractions Tom = new Fractions();
Tom.enterData();
Tom.add();
Tom.subtract();
Tom.multiply();
Tom.divide();
}
}
class Fractions{
double n1, d1, n2, d2;
public void enterData()
{
Scanner input = new Scanner(System.in);
out.println("Enter First Numerator: ");
n1 = input.nextDouble();
out.println("Enter First Denominator");
d1 = input.nextDouble();
out.println("Enter Second Numerator: ");
n2 = input.nextDouble();
out.println("Enter Second Denominator: ");
d2 = input.nextDouble();
}
public void add()
{
double add;
add = ((n1/d1) + (n2/d2));
out.println("Adding results: " +add);
}
public void subtract()
{
double sub;
sub = (((n1*d2) - (n2*d1)) / (d1*d2));
out.println("Subtracting results: " +sub);
}
public void multiply()
{
double mult;
mult = (n1*n2) / (d1*d2);
out.println("Multiplying results: " +mult);
}
public void divide()
{
double div;
div = (n1*d2) / (n2*d1);
out.println("Dividing results: " +div);
}
public String toString(double add, double sub, double mult, double div)
{
add.toString();
}
//pg 165
}
Edit: The regular objects work fine when calling the methods. But again, I don't know how to make a toString method. Thanks for the help.
Last edited by apfroggy0408 : 01-30-2008 at 06:43 AM.
|
|

01-30-2008, 08:18 AM
|
|
Senior Member
|
|
Join Date: Jul 2007
Posts: 1,222
|
|
The toString method is called by the jvm and returns a string that represents the state of the class instance. The member variables of this class are of interest so we return them, like this:
public String toString() {
return getClass().getName() +
"[n1:"+n1+", d1:"+d1+", n2:"+n2+", d2:"+d2+"]";
}
You use/test this inside your main method like this:
Fractions fractions = new Fractions();
fractions.enterData();
System.out.println("fractions = " + fractions);
fractions.add();
System.out.println("fractions = " + fractions);
In the println statement the jvm calls the toString method for the "fractions" instance. If you did not provide the toString override in your Fractions class the jvm would call the toString method of its superclass (Object) which would return the class name and a hex address of the instance in memory. You can observe this by commenting–out the toString method and running your test again.
|
|

01-30-2008, 10:45 AM
|
|
Member
|
|
Join Date: Jan 2008
Location: Pune
Posts: 1
|
|
|
there is a small mistake in your toString() method.
public String toString(double add, double sub, double mult, double div)
{
add.toString(); <-- (mistake)
}
just typecast it into "Double" and then do whatever you want to do,like ...
public String toString(double add, double sub, double mult, double div)
{
(Double)add.toString(); //now "add" is an object of the type Double
}
|
|

01-31-2008, 03:34 AM
|
|
Member
|
|
Join Date: Dec 2007
Posts: 26
|
|
Wonderful, thanks a lot. I switched around the code you gave me hardwired and suited it to my needs. Here it is.
/**
* @(#)prog53.java
*
*
* @author
* @version 1.00 2008/1/29
*/
import java.util.*;
import static java.lang.System.*;
public class prog53 {
public static void main(String args[])
{
Answers answers = new Answers();
answers.enterData();
answers.add();
answers.subtract();
answers.multiply();
answers.divide();
System.out.println(""+ answers);
}
}
class Answers{
double n1, d1, n2, d2, add, sub, mult, div;
public void enterData()
{
Scanner input = new Scanner(System.in);
out.println("Enter First Numerator: ");
n1 = input.nextDouble();
out.println("Enter First Denominator");
d1 = input.nextDouble();
out.println("Enter Second Numerator: ");
n2 = input.nextDouble();
out.println("Enter Second Denominator: ");
d2 = input.nextDouble();
out.println("");
}
public void add()
{
add = ((n1/d1) + (n2/d2));
}
public void subtract()
{
sub = (((n1*d2) - (n2*d1)) / (d1*d2));
}
public void multiply()
{
mult = (n1*n2) / (d1*d2);
}
public void divide()
{
div = (n1*d2) / (n2*d1);
}
public String toString()
{
return getClass().getName() +
"[Addition:"+add+", Subtracting:"+sub+", Multiplying:"+mult+", Dividing:"+div+"]";
}
//pg 165
}
|
|

01-31-2008, 04:36 AM
|
|
Member
|
|
Join Date: Dec 2007
Posts: 26
|
|
New question. How can i make a variable show two other variables with quotes in between. Here's what I'm trying to do.
addn = ((n1*d2) + (n2*d1));
addd = (d1*n2);
out.println(+addn);
out.println(+addd);
addfrac = addn +"/" addd; <----- is where i'm trying to pull it
off but it's not working
If it doesn't make sense, tell me and I'll try to explain better.
Last edited by apfroggy0408 : 01-31-2008 at 05:03 AM.
|
|

01-31-2008, 05:56 AM
|
|
Member
|
|
Join Date: Dec 2007
Posts: 26
|
|
|
Figured it out how to show it, but it was through the toString method. If someone could still show me how to do it the way above, that would be very nice.
|
|

01-31-2008, 06:08 AM
|
|
Senior Member
|
|
Join Date: Jul 2007
Posts: 1,222
|
|
double addn = 25.0;
double addd = 12.25;
String addfrac = String.valueOf(addn) + "/" + addd;
String s = String.format("%f/%f", addn, addd);
System.out.println(s);
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|