0%

explicit type conversion

E e

Transcription

    • US Pronunciation
    • US IPA
    • US Pronunciation
    • US IPA

Definition of explicit type conversion words

  • noun Technical meaning of explicit type conversion (programming)   (Or "cast" in C and elsewhere). A programming construct (syntax) to specify that an expression's value should be converted to a different type. For example, in C, to convert an integer (usually 32 bits) to a char (usually 8 bits) we might write: int i = 42; char *p = &buf; *p = (char) i; The expression "(char)" (called a "cast") converts i's value to char type. Casts (including this one) are often not strictly necessary, due to automatic coercions performed by the compiler, but can be used to make the conversion obvious and to avoid warning messages. 1

Information block about the term

Parts of speech for Explicit type conversion

noun
adjective
verb
adverb
pronoun
preposition
conjunction
determiner
exclamation

See also

Matching words

Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?