tostring

Why should I implement toString method for my Object?

Besides printing stuffs for the console what other use have you found for toString() method for your objects? ...

Difference between Convert.tostring() and .tostring()

Difference between Convert.tostring() and .tostring(). I got many difference in web.But what is major reason? ...

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 String mapAsString = Collections.toString(map)? ...

toString and valueOf truncates trailing 0s after decimal

In javascript, I've noticed that toString and valueOf truncates trailing 0s after a decimal. For example: var num = 0.00 var num2 = 0.0100 num.valueOf() or num.toString() // outputs 0 num2.valueOf() or num2.toString() // outputs 0.01 Is this normal behavior and is there someway to retain the trailing 0s? EDIT: I changed my original ...

Why won't MSMQ send a space character?

I'm exploring MSMQ services, and I wrote a simple console client-server application that sends each of the client's keystrokes to the server. Whenever hit a control character (DEL, ESC, INS, etc) the server understandably throws an error. However, whenever I type a space character, the server receives the packet but doesn't throw an erro...

php 5.1.6 magic __toString method

In codeigniter Im trying to use this plugin which requires I implement a toString method in my models. My toString method simply does public function __toString() { return (string)$this->name; } On my local machine with php 5.3 everything works just fine but on the production server with php 5.1.6 it shows "Object id#48" where the...

Why won't WPF databindings show text when ToString() has a collaborating object?

In a simple form, I bind to a number of different objects -- some go in listboxes; some in textblocks. A couple of these objects have collaborating objects upon which the ToString() method calls when doing its work -- typically a formatter of some kind. When I step through the code I see that when the databinding is being set up, To...

why toString method does not work here??

Hi this is my whole class ,I have added number 2 to the doubly linked list and then I want it to be be print in the concole but it will show this "datastructureproject.Node@f62373" thanks! package datastructureproject; public class DoublyLinkedList { private Node head = new Node(0); private Node tail = new Node(0); private int length =...

Is ToString() optimized by compiler?

Suppose I've following Code: Console.WriteLine("Value1: " + SomeEnum.Value1.ToString() + "\r\nValue2: " + SomeOtherEnum.Value2.ToString()); Will Compiler Optimize this to: Console.WriteLine("Value1: " + SomeEnum.Value1 + "\r\nValue2: " + SomeOtherEnum.Value2); I've checked it with IL Di...

BigInteger.ToString() returns more than 50 decimal digits.

I'm using .NET 4 System.Numerics.BigInteger Structure and I'm getting results different from the documentation. In the documentation of BigInteger.ToString() Method It says: The ToString() method supports 50 decimal digits of precision. That is, if the BigInteger value has more than 50 digits, only the 50 most significant di...

In Silverlight, is it possible to honor the ToString() method of a domain object returned from a service call?

In our domain, we override the ToString method on all our domain types. However, when returning those domain objects in response to a Silverlight service request, the functionality of ToString is lost. ToString() just returns the namespace description of the object as it is imported from the service. My guess is that the domain prox...

How to change symbol for decimal point in double.ToString()?

Hello, I would like to change decimal point to another character in C#. I have a double variable value and when I use the command: Console.WriteLine(value.ToString()); // output is 1,25 I know I can do this: Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("en-GB"))); // output is 1.25 but I don't like it very mu...

How to implement equals() and hashcode() methods in BaseEntity of JPA?

I have BaseEntity class which is a superclass of all JPA entities in my application. @MappedSuperclass public abstract class BaseEntity implements Serializable { private static final long serialVersionUID = -3307436748176180347L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "ID", nullable=false...

JCheckBox to display and perform functionality in JList

I am trying to get a JCheckBox to display on a line that is in the multiple select JList and still perform its functionality. Right now if I add the JCheckBox as an element it just prints its toString format. Help/ideas? ...

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

Hey all, 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 and the ToString method. [DebuggerDisplay("Name = {Name}")] public class Person { public string Name; } or public class Pe...

Java toString() - Do you include the classname in the toString?

Hi All. I was wondering what people put into their toString() methods in Java. I have been adding a few to some new classes and was wondering if it should include the classname or not. In the class ClassConfig I cant decide if I should have @Override public String toString() { return "ClassConfig:" + name; //frozen } or @Ove...

converting request.querystring using toString()

In JScript, why do I get the error "Object doesn't support this property or method" when I try to convert request.querystring to a string using toString()? var params = Request.QueryString; var params = params.toString(); Background info: I'm trying to convert the querystring to a string so that I can perform a regex replace and rem...

Java return arrays

I'm having trouble returning arrays from a custom method. It compiles fine but I get back: [Ljava.lang.String;@20cf2c80 Press any key to continue . . . I use: System.out.println(getItem(1)); code: public static String[] getItem(int e) { String[] stats = new String[7]; String name = "Null"; String desc = ...

Determine the decimal precision of an input number

We have an interesting problem were we need to determine the decimal precision of a users input (textbox). Essentially we need to know the number of decimal places entered and then return a precision number, this is best illustrated with examples: 4500 entered will yield a result 1 4500.1 entered will yield a result 0.1 4500.00 entered ...

convert the output of PinField.getPassword() to string

if ("Submit".equals(cmd)) { //Process the password. String UserNameInput=UserName.getText(); ///////////////////////////////ERROR Pin when printed shows error///////////////////////////// char[] PinInput = PinField.getPassword(); String pinInput=PinInput.toString(); //for debugging , print PinInput , b...