FIXME - definizione. Che cos'è FIXME
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

Cosa (chi) è FIXME - definizione

EXPLANATORY NOTE IN THE SOURCE CODE OF A COMPUTER PROGRAM
Comment (computing); Commenting code; */; /*; Rem'd out; Rem it out; Remmed out; Comment out; Comment (programming); Comment (computer language); Source code comment; Source code comments; FIXME; Fixme; Commenting out; REM (BASIC); Commented out; Code comments; Line comment; No-render sign; Comment line; Comments (JavaScript); Comment (JavaScript); Comment (javascript); Comment (Javascript); JavaScript comments; JavaScript comment; Javascript comments; Javascript comment; Comments in JavaScript; Code comment; Comments (programming); REM (DOS command); REM (command); Rem (command); Comparison of programming languages (comments); FIXME (tag); TODO (tag); XXX (tag); DEBUG (tag); BUG (tag); HACK (tag); NOTE (tag); UNDONE (tag); KLUDGE (tag); BODGE (tag)
  • Java]] source code with '''prologue''' comments indicated in <span style="color:#f00;">red</span> and '''inline''' comments in <span style="color:#0e850e;">green</span>. '''Program code''' is in <span style="color:#00f;"> blue</span>.

FIXME         
<programming> A standard tag often put in comments near a piece of code that needs work. The point of doing so is that a grep or a similar pattern-matching tool can find all such places quickly. This is common in GNU code. Compare XXX. [Jargon File] (2001-03-16)
comment out         
<programming> To surround a section of code with comment delimiters or to prefix every line in the section with a comment marker. This prevents it from being compiled or interpreted. It is often done to temporarily disable the code, e.g. during debugging or when the code is redundant or obsolete, but is being left in the source to make the intent of the active code clearer. The word "comment" is sometimes replaced with whatever syntax is used to mark comments in the language in question, e.g. "hash out" (shell script, Perl), "REM out" (BASIC), etc. Compare condition out. [Jargon File] (1998-04-28)
Comment (computer programming)         
In computer programming, a comment is a programmer-readable explanation or annotation in the source code of a computer program. They are added with the purpose of making the source code easier for humans to understand, and are generally ignored by compilers and interpreters.

Wikipedia

Comment (computer programming)

In computer programming, a comment is a programmer-readable explanation or annotation in the source code of a computer program. They are added with the purpose of making the source code easier for humans to understand, and are generally ignored by compilers and interpreters. The syntax of comments in various programming languages varies considerably.

Comments are sometimes also processed in various ways to generate documentation external to the source code itself by documentation generators, or used for integration with source code management systems and other kinds of external programming tools.

The flexibility provided by comments allows for a wide degree of variability, but formal conventions for their use are commonly part of programming style guides.