About 3,420,000 results
Open links in new tab
  1. Difference between parseInt () and valueOf () in Java?

    Integer k = Integer.valueOf(Integer.parseInt("123")) Now, if what you want is the object and not the primitive, then using valueOf(String) may be more attractive than making a new object out of …

  2. java - String.valueOf () vs. Object.toString () - Stack Overflow

    Oct 20, 2016 · In Java, is there any difference between String.valueOf(Object) and Object.toString()? Is there a specific code convention for these?

  3. Is there a `valueof` similar to `keyof` in TypeScript?

    Mar 15, 2018 · I want to be able to assign an object property to a value given a key and value as inputs yet still be able to determine the type of the value. It's a bit hard to explain so this code should reveal...

  4. valueOf() vs. toString() in Javascript - Stack Overflow

    Mar 21, 2010 · In Javascript every object has a valueOf() and toString() method. I would have thought that the toString() method got invoked whenever a string conversion is called for, but apparently it is …

  5. date = new Date (); date.valueOf () vs Date.now () - Stack Overflow

    There are several ways to get the current time in JavaScript: new Date() creates a Date object representing current date/time new Date().valueOf() returns number of milliseconds since midnight …

  6. java - BigDecimal - to use new or valueOf - Stack Overflow

    Mar 15, 2012 · In general, valueOf is preferred (because it can avoid making new objects by reusing "popular" instances), but in the case of BigDecimals and double, unfortunately, the two methods …

  7. java - Integer.valueOf () vs. Integer.parseInt () - Stack Overflow

    Sep 9, 2016 · 262 Actually, valueOf uses parseInt internally. The difference is parseInt returns an int primitive while valueOf returns an Integer object. Consider from the Integer.class source:

  8. How to get an enum value from a string value in Java

    6 Enum valueOf () An enum class automatically gets a static valueOf () method in the class when compiled. The valueOf () method can be used to obtain an instance of the enum class for a given …

  9. Double.valueOf(s) vs. Double.parseDouble - Stack Overflow

    Aug 31, 2011 · Casting an Object to a double and noticed both these methods. I see that parseDouble has been in since 1.2. Why add this method if it essentially does the same functionality as valueOf(s)?

  10. Override valueof() and toString() in Java enum - Stack Overflow

    Mar 12, 2012 · Override valueof () and toString () in Java enum Asked 13 years, 8 months ago Modified 5 years, 2 months ago Viewed 211k times