About 50 results
Open links in new tab
  1. 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.

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

  4. What's the difference between casting and coercion in Python?

    Oct 21, 2009 · Cast really only comes up in the C FFI. What is typically called casting in C or Java is referred to as conversion in python, though it often gets referred to as casting because of its …

  5. algorithm - What is the difference between ray tracing, ray casting ...

    May 1, 2021 · I have heard a lot of different terms however and I would be interested to know what exactly is the difference between ray tracing, ray matching, ray casting, path tracing and potentially …

  6. What are the rules for casting pointers in C? - Stack Overflow

    Jun 23, 2013 · There are rules about casting pointers, a number of which are in clause 6.3.2.3 of the C 2011 standard. Among other things, pointers to objects may be cast to other pointers to objects and, …

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

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

  9. Best practice in C++ for casting between number types

    May 28, 2016 · What is the best practice for casting between the different number types? Types float, double, int are the ones I use the most in C++. An example of the options where f is a float and n is a …

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