"toString" or "ToString" is a major formatting method or function used in high level programming languages. It converts an Object to its string representation so that it is suitable for display.
0
votes
2answers
47 views
Best Practices with C++ ostream (tostring)
What are best practices when overloading the << operator. Particularly, how do I distinguish between opearting on a pointer vs an object. Is it kosher for them to both output the same string ...
-1
votes
2answers
33 views
toString only works with parenthesis or non-literal numbers [duplicate]
For some reason, when I try to call toString on a literal number, it fails:
> 5.toString()
SyntaxError: Unexpected token ILLEGAL
So I tried putting it in a variable, and it worked:
> var ...
-5
votes
1answer
45 views
ToString on Object generate error
I'm trying to display my Object content.
I use ORM. I have Delivery who contains a list of User. In delivery.toString() I make this:
`
@Override
public String toString() {
String ...
4
votes
6answers
104 views
Is the toString Method Unnecessary?
I was watching a tutorial on toStrings recently, since I still haven't used them much, and it occurred to me that there might be an easier way of accomplishing the same thing with less code. Surely ...
1
vote
2answers
27 views
Use ToString() with @Html.DisplayFor
Why can't I use ToString("#.##") with a @Html.DisplayFor such as:
@Html.DisplayFor(modelItem => modelItem.Balance.ToString("#.##"))
6
votes
3answers
73 views
toString() method within System.out.println() a double call?
A professor of mine once said that the following code should never be done:
System.out.println(object.toString());
He said (and I believe cited "Effective Java") it causes a double call. Since ...
0
votes
0answers
19 views
What to import to use IOUtils.toString()?
I am trying to use IOUtils.toString() to read from a file.
However, I am getting an error saying "IOUtils cannot be resolved."
What am I supposed to be importing to allow me to use this function?
...
-1
votes
1answer
59 views
Java printing ArrayList of points
How would I go about printing an arraylist full of points generated by the ImageIO.read method?
This doesn't seem to work for me :(
for(int i = 0; i < list.size(); i++) {
...
-1
votes
2answers
61 views
Object Array won't print correctly
I'm brand new to programming and Java, I'm doing a school project with very strict guidelines. I'm sure there's a more efficient way to do my code, but that's not my issue. When I try to print my ...
0
votes
2answers
39 views
Getting a NoSuchElementsException in Java?
Ok, so for my java class's final project we're supposed to implement a simplified version of craps that runs for 10 rounds. Whenever I run this, I get the NoSuchElementsException for the line "int ...
0
votes
4answers
65 views
What is the purpose of overriding toString?
Why not create a method that returns the desired information in a class instead of overriding the toString() method?
0
votes
4answers
61 views
java passes toString() to a method
I have the following code
public class Mamman14 {
public static void main(String[] args) {
// TODO code application logic here
}
public class SortedPair < E extends ...
2
votes
1answer
42 views
Array.toString data handling in Java
I'm confused the way data has been manipulated here in this case, thought will seek someones advice.
arrayDataOne = [ HEllO, NAME, ADDRESS, ZIPCODE ]
i.e
[0] = "HELLO"
[1] = "NAME"
[2] = ...
1
vote
4answers
77 views
converting a matrix to string
I am working on writing a matrix, but unfortunately I am stuck with the output.
Instead of showing a matrix, it shows me something like:
actual matrix is
Matrix@512fb063
I need to convert the ...
4
votes
2answers
43 views
Why only char[] gets printed out as if with the toString method?
Why only the following works?
char [] indeed = new char []{'a','b'};
System.out.println(indeed);// ehy it's seems like toString has been overridden!
whereas all the others do not seem to have ...
-1
votes
1answer
42 views
c# ToString a decimal and force + sign AND number decimal places
How can I do two things in tostring format:
1. Display number to x decimal places
2. Also force a + sign so that negative an positive numbers lineup in nice columns.
string fmt = "+N" + dp + ";-N" + ...
0
votes
1answer
19 views
Do I need to create an abstract method for toString and equals?
so my program is creating Quadrilaterals, and I was told to make abstract methods for findArea() and findPerimeter(), but do I need them for toString() and boolean equals method?
abstract public ...
0
votes
2answers
31 views
Identical Output of Two Objects from arraylist
class Use {
public static void main(String[] args) throws IOException {
Use u = new Use();
BufferedReader br = new BufferedReader (new InputStreamReader(System.in));
...
0
votes
2answers
27 views
BigDecimal with minimal 2 fraction digits
I saw Using BigDecimal to work with currencies but I have a little different problem.
I give object with BigDecimal parameters to PDF generation library and I can't use Formatter, only send objects. ...
-4
votes
1answer
70 views
Leaving toString() in production code? [closed]
Is it generally a bad/good practice to leave toString() in compiled production code? and Why?
3
votes
2answers
40 views
Negative numbers to binary string
Anyone knows why javascript Number.toString function does not represent negative numbers correctly?
//If you try
(-3).toString(2); //show "-11"
// but if you fake a bit shift operation it works as ...
1
vote
1answer
39 views
How to accurately convert numbers to strings in JavaScript
JavaScript stores all numbers in double-precision floating-point format, with a 52-bit mantissa and an 11-bit exponent (the IEEE 754 Standard for storing numeric values), and therefore its ...
0
votes
2answers
25 views
Why can't I use format specifier on DataGrid Value?
string Foo = selectedrow.Cells["Foo"].Value.ToString("D5");
Gives me error of
No overload for method 'ToString' takes 1 arguments
so I had to use
string Foo = ...
0
votes
1answer
32 views
NPE in my own graph class using HashMap
This is for a school project. We're supposed to write a program handling graphs with the help of a HashMap. Each node (or corner?) has a key (which is another node to which we have a connection) and a ...
0
votes
5answers
83 views
Adding a toString method to a linked list
I have created a linked list class to make a simple register, where I can add and remove students from a list. However I am not sure how to create my toString method for a linked list, what is the ...
0
votes
1answer
34 views
Java toString() override for P
I am trying to print these songs from an array list which looks like this:
After adding the songs, I have to remove one of the songs and display the songs left, but I am not sure how I would override ...
-1
votes
3answers
72 views
java.util.Date has two different outputs?
I have this method:
void updatePet(String userid, int index, int happiness, Date lastUpdated, PetLifePhase state, Date created)
All calls to it are logged (via a reflection Proxy). The arguments ...
0
votes
2answers
55 views
Formatting with toString so that I get a chart of sorts
I'm attemping to make make a toString method that formats like the following:
10001 Lumia 900 3 $450.00 $1350.00
This needs to format like this with different length strings when I ...
4
votes
1answer
202 views
Passing a derived class to a web service method, as the base class
I have a C# class imported from a web service. Due to debugging issues and arrays, I needed this class to have a ToString() override or DebuggerDisplayAttribute, and the only way I found was adding ...
3
votes
3answers
87 views
Why overriden ToString() do not return what I want when item added to ComboBox?
public partial class TestConrol : UserControl
{
public TestConrol()
{
InitializeComponent();
}
public override string ToString()
{
return "asd";
}
}
public ...
0
votes
1answer
35 views
Comparing a static functions equality in javascript?
I am working on a little project and one of the objects for the project can include update functions being added to an array that is a property of the object.
Example,
/*
Add an update function ...
1
vote
2answers
61 views
Returning a string with toString java
I have been working with a comparable class that runs and compares correctly, but when I try to print the values out, it gives me the memory addresses. I know that this could be fixed with a toString ...
1
vote
2answers
62 views
The purpose of toString(int) in Java
I am trying to solve the purpose of toString(32). As an example of it's use:
private SecureRandom sRandomString = new SecureRandom();
public String newRandomPass() {
return new BigInteger(70, ...
0
votes
0answers
12 views
Better logging output (one element = one line) for collections?
I am using slf4j with log4j and when doing e.g.
log.debug("{}", aCollection);
the output is like
element1, element2...
but I want
element1,
element2
because that's much easier to read and ...
0
votes
1answer
59 views
Card and Deck toString and shuffle
So, in my java class, we were given these card and deck classes, which will be used for a card game later on. Here is the card code:
public class Card {
// public constants:
public static ...
1
vote
3answers
59 views
ToString() default CultureInfo
I think I understand the CultureInfo usage.
If I do simple :
const int a = 5;
string b = a.ToString();
is it equal to :
const int a = 5;
string b = a.ToString(CultureInfo.InvariantCulture);
In ...
1
vote
2answers
48 views
arrays.toString() custom formatting
How can I change the output from
[ua, disclaimer, ok, ua, navigation, fault, ua, fault, previous, ua, fault, previous]
to this
ua, disclaimer, ok ---> ua, navigation, fault ---> ua, fault, ...
0
votes
4answers
86 views
What exactly do the keywoards “this” and “toString” mean and do? [duplicate]
I am currently in the process of learning Java, and I have done what I could to try and understand what these two things mean and do, but I simply don't get it. I have done a lot of googling, and also ...
0
votes
6answers
83 views
toString Override in Java
This question is from an assignment. I have to override a toString() method in a class that creates a circularly linked list and I actually have a toString() method that works great, it passes all of ...
-9
votes
1answer
54 views
Convert a complex object into string [closed]
I have a complex object containing number of fields. I want to display the object in a runtime flow. Is there any utility function for the same? I have seen number of solutions, but they all override ...
0
votes
1answer
46 views
Node array toString Java
I have a method which returns children of a given Node. All thats inside a Node (instance variable) is a char character.
public Node[] children(){
return (Node[]) children.toArray(new Node ...
10
votes
2answers
98 views
Unnecessary casting to object used for calling ToString() in mscorlib [closed]
In StringWriter (mscorlib.dll) I found a code:
private StringBuilder _sb;
// (...)
public override string ToString()
{
return ((object) this._sb).ToString();
}
I don't see reason for that (so is ...
3
votes
3answers
81 views
Exception's ToString() method
I found in someones code following :
catch (Exception exception)
{
Console.WriteLine(exception.ToString());
}
Resharper is graying out the ToString() call which is as always a great suggestion.
...
3
votes
6answers
92 views
tostring(“000.0”) generating wrong value
In my c# console application, I want to convert double variable to string type. but resultant string variable should have at least 3 digit to left of decimal point and one digit to right of it.
...
0
votes
2answers
69 views
Getting string representations from a hashtable using a toString
Just wondering what the best way to represent Strings are from Hash tables, I figured you would use an iterator somehow in a toString method but wasn't sure.
It should look something like the ...
0
votes
0answers
20 views
replacing null with zero in xml file
we have mapping files in xml that get columns from txt files and map their values to specific tables. we are getting an error when the file includes null cells.
so i tried to replace null with '0' ...
-1
votes
1answer
52 views
Taking away certain commas etc in a toString
Heres my toString method currently
StringBuilder string = new StringBuilder();
for (int i = 0; i < knowledgeD.size(); i++ ){
w = knowledgeD.get(i).get(0);
y = ...
0
votes
0answers
52 views
Separatley representing arraylist indexes as Strings
So far I have an ArrayList that has the following contents
[[2/11, 11/48], [8/35, 35/288], [16/43, 43/288], [75/152, 19/210], [4/5, 5/16], [135/163, 163/1680]]
However I need to represent each ...
0
votes
2answers
62 views
How to format a double with minimum precision
I have what I think is a simple problem.
I have a collection of doubles that I want to display in a listbox.
At a minimum, it should display three decimal places, however, if there are more than three ...
0
votes
1answer
142 views
Java StringWriter StringBuilder exception at toString
Ok.. this is totally weird. I'm trying to make a http request in android. It works and I can 'build' a string using StringWriter but the code throws an exception at writer.toString(). It makes no ...




