Type Inference
Advertisement
Techopedia Explains Type Inference
Type inference is often a compiler feature of functional programming languages rather than of object-oriented ones. The compiler or interpreter needs only minimal information as well as context in order to figure out what the data type of a variable or expression is.The inference algorithm tries to determine the argument types as well as the return value type and then it tries to find the most specific data type that works with all of the arguments. As a basic example, consider the function Foo(a,b) = x + y; the compiler knows that the "+" operator takes two integers and also returns an integer, so now the compiler or interpreter can infer that Foo also has the type integer.
Advertisement
Related Terms
Related Reading
- Scripting Languages 101
- Computer Programming: From Machine Language to Artificial Intelligence
- The Pioneers of Computer Programming
- Single-Tenant vs. Multi-Tenant Applications: How to Choose
- Multimodal Learning: A New Frontier in Artificial Intelligence
- Uncovering Security Breaches