Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
7answers
11k views

Stacktrace to string in Java

Easiest way to convert the result of Throwable.getStackTrace() to a string that depicts the stacktrace?
37
votes
7answers
20k views

Problem with converting int to string in Linq to entities

var items = from c in contacts select new ListItem { Value = c.ContactId, //Cannot implicitly convert type 'int' (ContactId) to 'string' (Value). ...
26
votes
3answers
10k views

What is the Objective-C equivalent for “toString()”, for use with NSLog?

Is there a method that I can override in my custom classes so that when NSLog(@"%@", myObject) is called, it will print the fields (or whatever I deem important) of my object? I guess I'm ...
24
votes
2answers
10k views

Java: How to get the unique ID of an object which overrides hashCode()?

When a class in Java doesn't override hashCode(), printing an instance of this class gives a nice unique number. The Javadoc of Object says about hashCode(): As much as is reasonably practical, ...
23
votes
8answers
6k views

Enum ToString

My enum consists of the following values: private enum PublishStatusses{ NotCompleted, Completed, Error }; I want to be able to output these values in a user friendly way though. In this SO ...
22
votes
1answer
5k views

java: what is this: [Ljava.lang.Object;?

I get this when I call toString on an object I received from a function call. I know the type of the object is encoded in this string, but I don't know how to read it. What is this type of encoding ...
15
votes
7answers
449 views

.NET: How to convert Exception to string?

When an exception is thrown (while debugging in the IDE), i have the opportunity to view details of the exception: But in code if i call exception.ToString() i do not get to see those useful ...
13
votes
5answers
26k views

Convert double to string C++?

I want to combine a string and a double and g++ is throwing this error: main.cpp: In function ‘int main()’: main.cpp:40: error: invalid operands of types ‘const char [2]’ and ‘double’ to binary ...
13
votes
7answers
9k views

Get entire document HTML as string

Is there a way in JS to get the entire HTML within the html tags, as a string? document.documentElement.??
12
votes
3answers
2k views

Difference between Convert.ToString() and .ToString()

What is the difference between Convert.ToString() and .ToString()? I found many differences online, but what's the major difference?
12
votes
7answers
10k views

Dumping a java object's properties

Is there a library that will recursively dump/print an objects properties? I'm looking for something similar to the console.dir() function in Firebug. I'm aware of the commons-lang ...
12
votes
7answers
5k views

Accessing object memory address

When you call the object.__repr__() method in python you get something like this back: <__main__.Test object at 0x2aba1c0cf890>, is there any way to get a hold of the memory address if you ...
10
votes
7answers
623 views

Is there an equivalent to Java's ToStringBuilder for C#? What would a good C# version feature?

In the Java world we have Apache Commons' ToStringBuilder to help with creating toString() implementations. ( http://commons.apache.org/lang/api/org/apache/commons/lang/builder/ToStringBuilder.html ) ...
9
votes
4answers
327 views

What are the original reasons for ToString() in Java and .NET?

I've used ToString() modestly in the past and I've found it very useful in many circumstances. However, my usage of this method would hardly justify to put this method in none other than ...
9
votes
7answers
986 views

Difference between .ToString and “as string” in C#

What is the difference between using the two following statements? It appears to me that the first "as string" is a type cast, while the second ToString is an actual call to a method that converts the ...
8
votes
6answers
317 views

Since Int32 is a value type why does it inherit .ToString()?

These are the docs about .ToString() that has prompted this question. They state: Because Object is the base class of all reference types in the .NET Framework, this behavior [.ToString()] is ...
8
votes
5answers
3k views

Java toString() using reflection?

I was writing a toString() for a class in Java the other day by manually writing out each element of the class to a String and it occurred to me that using reflection it might be possible to create a ...
7
votes
2answers
154 views

Overriding ToString() for debugging and logs - should the string be localized?

I'm designing a .NET library that will be used by other developers making both web and desktop applications. I'm overriding ToString() in various classes to provide information for debugging purposes ...
7
votes
4answers
3k views

Why does .NET decimal.ToString(string) round away from zero, apparently inconsistent with the language spec?

I see that, in C#, rounding a decimal, by default, uses MidpointRounding.ToEven. This is expected, and is what the C# spec dictates. However, given the following: A decimal dVal A format string ...
7
votes
4answers
3k views

Explicit vs implicit call of toString

I used to use the implicit call of toString when wanting some debug info about an object, because in case of the object is null it does not throw an Exception. For instance: ...
7
votes
6answers
5k views

How to display DateTime with an abbreviated Time Zone?

I am aware of the System.TimeZone class as well as the many uses of the DateTime.ToString() method. What I haven't been able to find is a way to convert a DateTime to a string that, in addition to ...
6
votes
5answers
394 views

Is it really worth implementing toString() for entity classes

It is consistently advised to override (implement) the toString() method of a class. The Java API documentation itself says "It is recommended that all subclasses override this method.". Bloch, in ...
6
votes
5answers
290 views

Does StringBuilder become immutable after a call to ToString?

I distinctly remember from the early days of .NET that calling ToString on a StringBuilder used to provide the new string object (to be returned) with the internal char buffer used by StringBuilder. ...
6
votes
2answers
3k views

Map to String in Java

When I do System.out.println(map) in Java, I get a nice output in stdout. How can I obtain this same string representation of a Map in a variable without meddling with standard output? Something like ...
6
votes
4answers
951 views

Why Is ToString() Rounding My Double Value?

How do I prevent my double value from being rounded when converting to a string? I have tried both Convert.ToString and ToString() with the same result. For example my double may look something ...
6
votes
5answers
693 views

C#: How should ToString() be implemented?

The problems are: GUI libraries like to use ToString as a default representation for classes. There it needs to be localized. ToString is used for logging. There it should provide programming ...
6
votes
2answers
11k views

C# Converting 20 digit precision double to string and back again

In C#. I have a double (which I've extracted from a database) that has 20 digit precision. In Visual Studio (using QuickWatch) I can see the value of the double to be = 0.00034101243963859839. I ...
6
votes
13answers
1k views

Is toString() only useful for debugging?

Besides of course, their use with primitives. Most (if not all) of the implementations I see are only useful from a programmer viewpoint. EDIT: I understand that I'm supposed to override the ...
5
votes
6answers
114 views

Print arrays in Java

I'm writing a method that prints every Object it get passed. This works fine by calling the Object.toString() method for the object but doesn't works for arrays. I can find out whether it is an Array ...
5
votes
1answer
333 views

Is it safe to rely on Function.prototype.toString?

Is it safe to rely on Function.prototype.toString to return a string that will parse as a valid javascript function (for user-defined functions)? Are there any commonly-used javascript engines that ...
5
votes
3answers
124 views

Java - Why the following code print out “BAC”, instead of “ABC”?

Please help me understand this code. I am new to java. // C.java class C { public static void main(String arg[]) { System.out.println("A"+new C()); } public String toString() { ...
5
votes
2answers
324 views

Calling toString on a javascript function returns source code

I just found out that when you call toString() on a javascript function, as in myFunction.toString(), the source code of that function is returned. If you try it in the Firebug or Chrome console it ...
5
votes
3answers
244 views

How to force a sign when formatting an Int in c#

I want to format an integer i (-100 < i < 100), such that: -99 formats as "-99" 9 formats as "+09" -1 formats as "-01" 0 formats as "+00" i.ToString("00") is close but does not add the + ...
5
votes
3answers
453 views

toString override in C++

In Java, when a class overrides .toString() and you do System.out.println() it will use that. class MyObj { public String toString() { return "Hi"; } } ... x = new MyObj(); System.out.println(x); ...
5
votes
3answers
444 views

Idiomatic way to use Options's in Scala

I am converting some Java code to Scala, trying to make the code as idiomatic as possible. So, I now have some code using Options instead of nullable values, and I wonder whether things are ...
5
votes
6answers
387 views

ToString on null string in C#

Why does the second one of these produce an exception while the first one doesn't? string s = null; MessageBox.Show(s); MessageBox.Show(s.ToString()); Updated - the exception I can understand, the ...
5
votes
10answers
3k views

How do I format a C# decimal to remove extra following 0's?

I want to format a string as a decimal, but the decimal contains some following zeros after the decimal. How do I format it such that those meaningless 0's disappear? string.Format("{0}", 1100M); ...
5
votes
3answers
246 views

How do I automatically display all properties of a class and their values in a string?

Imagine a class with many public properties. For some reason, it is impossible to refactor this class into smaller subclasses. I'd like to add a ToString override that returns something along the ...
5
votes
7answers
552 views

What is the best standard style for a toString implementation?

We have a lot of objects for which we like to implement a simple toString to output attributes of the object. Some of these attributes may be complex objects themselves. Is there any standard, or ...
5
votes
2answers
205 views

How to represent a .NET DateTime 24-hour format in 01-24 instead of 00-23?

I have a strange business requirement to output dates as 01:00 through 24:00, instead of the usual 00:00 through 23:00. It is really a crazy requirement, but unfortunately I don't think I can avoid ...
5
votes
1answer
318 views

C# debugging: [DebuggerDisplay] or ToString()?

There are two ways I know of to increase the usefulness of debugging information so you don't see {MyNamespace.MyProject.MyClass} in the debugger. These are the use of the DebuggerDisplay attribute ...
5
votes
5answers
2k views

C#: Overriding ToString() method for custom exceptions

I have a custom exception class which contains some additional fields. I want these to be written out in the ToString() method, but if I implement my own ToString(), I loose some other useful stuff ...
5
votes
7answers
606 views

Java: Getting the properties of a class to construct a string representation

Let's say I have a class like this (and also further assume that all the private variables: public class Item { private String _id = null; private String _name = null; private String ...
5
votes
10answers
3k views

toString(), equals(), and hashCode() in an interface

So, I have an interface with a bunch of methods that need to be implemented, the method names are irrelevant. The objects that implement this interface are often put into collections, and also have a ...
5
votes
6answers
3k views

Overriding ToString() of List<MyClass>

I have a class MyClass, and I would like to override the method ToString() of instances of List: class MyClass { public string Property1 { get; set; } public int Property2 { get; set; } ...
5
votes
2answers
1k views

Do any Java libraries use annotations for code generation?

Is anyone aware of a library that uses the the techniques (annotations and classworking) described in this article for automatically generating the standard Object methods toString(), equals() and ...
5
votes
7answers
883 views

C#: Avoiding Bugs caused by not Overriding ToString

I find the following bug occurring far too often in my code and wondered if anyone knows some good strategies to avoid it. Imagine a class like this: public class Quote { public decimal ...
4
votes
4answers
113 views

Write toString() once and for all?

I want to have all of my classes implement toString() the same way using Java reflection. There are two ways I came up with. Create a base class such as MyObject overriding toString() and all my ...
4
votes
1answer
386 views

TO_CHAR of an Oracle PL/SQL TABLE type

For debugging purposes, I'd like to be able to "TO_CHAR" an Oracle PL/SQL in-memory table. Here's a simplified example, of what I'd like to do: DECLARE TYPE T IS TABLE OF MY_TABLE%ROWTYPE INDEX BY ...
4
votes
2answers
223 views

c# toString() performance

I'm curious about the ToString() method in C#. Take for example the following: object height = 10; string heightStr = height.ToString(); When I call ToString() on height, I get a string type ...

1 2 3 4 5 7