In Java, how to print only the value instead of "OptionalDouble[value]"?"
I printing a OptionalDouble matrix, and in the print, instead of print only the variable value, print e.g. "OptionalDouble[2.0]". I only want to print the value (2.0 in this example) and not "OptionalDouble[2.0]".
The code:
```java
import java.util.Scanner;
import java.ultil.OptionalDouble;
Scanner key=new Scanner(System.in);
OptionalDouble[][] mat;
mat=new OptionalDouble[3][3];
String YorN;
for(int f=0;f<mat.length,f++){
for(int c=0;c<mat.length;c++){
System.out.print("Do you want insert a value? (Yes:Y / No:N)");
YorN=key.next;
if(YorN.equals("Y")||YorN.equals("y"){
mat[f][c]=OptionalDouble.of(key.nextDouble());
}
}
}
for(int f=0;f<mat.length,f++){
for(int c=0;c<mat.length;c++){
System.out.print(mat[f][c].toString());
}
}
4 Replies
⌛
This post has been reserved for your question.
Hey @Franscis123$#! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
You're going to have to make a custom method that does this conversion
The API of OptionalDouble is (unfortunately) quite limited
Ok, thanks
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.