What is the term used for the act of casting a void pointer into a pointer to a type?

102 Views Asked by At

What is the term used (say, by programming language theorists) for the act of casting a void pointer into a pointer to a type? Is it "upcasting"? "type infusion"? "typing"?

Notes:

  • It is obviously a cast, and obviously a reinterpreting cast - but I'm looking for a more specific term, expressive of the transition from an untyped to a typed pointee.
  • Please do not argue about whether it's a good idea to avoid this or not, that is really not the question.
2

There are 2 best solutions below

4
On BEST ANSWER

If you wanted to make up a new term, you could call it type unerasure.

15
On

I'd say such is brute force casting (or just casting like the c nitpickers will call it) like it's represented in c++ with the proper reinterpret_cast<>, hence reinterpret casting.