Yahoo Search Busca da Web

Resultado da Busca

  1. Metaprogramming is a computer programming technique in which computer programs have the ability to treat other programs as their data. It means that a program can be designed to read, generate, analyse, or transform other programs, and even modify itself, while running.

  2. Metaprogramação é a programação de programas que escrevem ou manipulam outros programas (ou a si próprios) assim como seus dados, ou que fazem parte do trabalho em tempo de compilação. Em alguns casos, isso permite que os programadores sejam mais produtivos ao evitar que parte do código seja escrita manualmente.

  3. Metaprogramming refers to a variety of ways a program has knowledge of itself or can manipulate itself. In languages like C#, reflection is a form of metaprogramming since the program can examine information about itself.

  4. 18 de nov. de 2023 · However, when C++ programmers talk about metaprogramming, they usually refer to template metaprogramming specifically (which has nothing to do with QT's meta-object system). Several other flavors exist: Some languages allow youto do metaprogramming at runtime (manipulating or extending types while the program is running), and QT's ...

  5. Template metaprogramming ( TMP) is a metaprogramming technique in which templates are used by a compiler to generate temporary source code, which is merged by the compiler with the rest of the source code and then compiled. The output of these templates can include compile-time constants, data structures, and complete functions.

  6. Metacomputing, as a computing of computing, includes: the organization of large computer networks, choice of the design criteria (for example: peer-to-peer or centralized solution) and metacomputing software (middleware, metaprogramming) development where, in the specific domains, the concept metacomputing is used as a description of ...

  7. 13 de set. de 2021 · Metaprogramming. Programs typically read input data, operate on that data and give some output data. Metaprograms read another program, manipulate that program and return a modified program. Sometimes a metaprogram can change its own behaviour by updating itself. The act of writing metaprograms is called metaprogramming.