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. Why is casting a const reference directly to a mutable reference ...

    Nov 24, 2018 · The superficial answer to the question "why?" is that these simply are the rules of as expressions in Rust. Quoting from the Nomicon: Casting is not transitive, that is, even if e as U1 as …

  3. Python: typing.cast vs built in casting - Stack Overflow

    Jan 4, 2023 · 23 str(x) returns a new str object, independent of the original int. It's only an example of "casting" in a very loose sense (and one I don't think is useful, at least in the context of Python code). …

  4. Casting objects in Java - Stack Overflow

    Mar 15, 2011 · Casting can be used to clearly state that you are calling a child method and not a parent method. So in this case it's always a downcast or more correctly, a narrowing conversion.

  5. Implicit and explicit casting advantages and disadvantages

    Dec 29, 2013 · Implicit casting is rarely used, because it reduces readability of your code. Explicit casting is a bit more readable, but a bit less convenient.

  6. c# - Why should casting be avoided? - Stack Overflow

    Aug 1, 2013 · Bad is a relative term. Avoiding casting is a best-practice, but sometimes a programmer has gotta do what a programmer has got to do. (especially if you writing a java 1.5+ program that …

  7. 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 …

  8. Casting interfaces for deserialization in JSON.NET

    Learn how to cast interfaces for deserialization in JSON.NET with examples and solutions provided by the community on Stack Overflow.

  9. Casting vs using the 'as' keyword in the CLR - Stack Overflow

    Could you add a small example of why you're using the casts in the first place to the question, or perhaps start a new one? I'm kinda interested in why you would need the cast for unit testing only. I …

  10. 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, …