About 50 results
Open links in new tab
  1. casting - Converting double to integer in Java - Stack Overflow

    Jun 24, 2011 · is there a possibility that casting a double created via Math.round() will still result in a truncated down number No, round() will always round your double to the correct value, and then, it …

  2. Regular cast vs. static_cast vs. dynamic_cast - Stack Overflow

    Aug 26, 2008 · Static cast is also used to cast pointers to related types, for example casting void* to the appropriate type. dynamic_cast Dynamic cast is used to convert pointers and references at run-time, …

  3. casting - How to cast or convert an unsigned int to int in C? - Stack ...

    Feb 26, 2011 · The real question is what you want to do when/if the value in the unsigned int it out of the range that can be represented by a signed int. If it's in range, just assign it and you're done. If it's out …

  4. Casting to string versus calling ToString - Stack Overflow

    Oct 14, 2009 · (string)obj casts obj into a string. obj must already be a string for this to succeed. obj.ToString() gets a string representation of obj by calling the ToString() method. Which is obj itself …

  5. Casting from 'System.Int16' to type 'System.Int32'

    May 28, 2024 · I'm willing to bet it has nothing to do with casting and everything to do with boxing. While an implicit cast from int16 to int32 is available, you can't unbox an int16 to int32

  6. Casting LinkedHashMap to Complex Object - Stack Overflow

    I've got an application that stores some data in DynamoDB using Jackson to marshall my complex object into a JSON. For example the object I'm marshalling might look like this: private String aSt...

  7. SystemVerilog Array of Bits to Int Casting - Stack Overflow

    Jun 22, 2020 · The explicit int'() cast is unnecessary since the assignment to an int variable creates an implicit cast to int. Also realize you are taking a chance with these variable declaration initializations …

  8. c++ - When should static_cast, dynamic_cast, const_cast, and ...

    The C-style casts can do virtually all types of casting from normally safe casts done by static_cast<> () and dynamic_cast<> () to potentially dangerous casts like const_cast<> (), where const modifier can …

  9. c# - Casting a variable using a Type variable - Stack Overflow

    In C# can I cast a variable of type object to a variable of type T where T is defined in a Type variable?

  10. Casting a double as an int, does it round or just strip digits?

    Nov 8, 2012 · Doing some calculations with doubles which then need to be cast to an int. So i have a quick question, when casting a double say 7.5 to an int, it will return 7. Is this a product of rounding …