Magic (programming) should not be confused with Magic number (programming).
In the context of computer programming, magic is an informal term for abstraction; it is used to describe code that handles complex tasks while hiding that complexity to present a simple interface. The term is somewhat tongue-in-cheek, and often carries bad connotations, implying that the true behavior of the code is not immediately apparent. For example, Perl's polymorphic typing and closure mechanisms are often called "magic".
The term implies that the hidden complexity is at least in principle understandable, in contrast to variants which describe arcane techniques that are deliberately hidden or extremely difficult to understand. However, the term can also be applied endearingly, suggesting a "charm" about the code.
The action of such abstractions is described as being done "automagically", a portmanteau of "automatically" and "magically".
See main article: Referential transparency.
"Magic" refers to procedures which make calculations based on data not clearly provided to them, by accessing other modules, memory positions or global variables that they are not supposed to (in other words, they are not referentially transparent). According to most recent software architecture models, even when using structured programming, it is usually preferred to make each function behave the same way every time the same arguments are passed to it, thereby following one of the basic principles of functional programming. When a function breaks this rule, it is often said to contain "magic".
A simplified example of negative magic is the following code in PHP:
$somevariable = true;
magic;
While the code above is clear, if it is seen in a large project, it is often hard to understand where the function magic
gets its value from. It is preferred to write that code using the following concept:
$somevariable = true;
noMagic($somevariable);
This definition of magic or magical can be extended to a data type, code fragment, keyword, or machine address that has properties not shared by otherwise identical objects. The magical properties may or may not be documented.
while({{var|<file_handle>}})
implicitly assigns the line read from the file by to the variable, and applies the function to the expression so that any successfully read string, even or the empty string, evaluates as true and continues the loop. This does not happen to anywhere else, or to with any other control expression.[2]stdio.h
header file . It is not safe to copy these objects within the program; sometimes their addresses may be 'magic'. .